├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── blog-placeholder-1.jpg ├── blog-placeholder-2.jpg ├── blog-placeholder-3.jpg ├── blog-placeholder-4.jpg ├── blog-placeholder-5.jpg ├── blog-placeholder-about.jpg └── favicon.svg ├── src ├── components │ ├── BaseHead.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Header.astro │ ├── HeaderLink.astro │ ├── RecentPublications.astro │ ├── TagLink.astro │ └── ThemeIcon.astro ├── consts.ts ├── content │ ├── blog │ │ ├── first-post.md │ │ ├── markdown-style-guide.md │ │ ├── second-post.md │ │ ├── third-post.md │ │ └── using-mdx.mdx │ └── config.ts ├── env.d.ts ├── layouts │ └── BlogPost.astro ├── pages │ ├── about.astro │ ├── blog │ │ ├── [...slug].astro │ │ └── index.astro │ ├── index.astro │ ├── rss.xml.js │ └── tags │ │ ├── [...slug].astro │ │ └── index.astro ├── styles │ └── global.css └── utils │ └── cn.ts ├── tailwind.config.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/package.json -------------------------------------------------------------------------------- /public/blog-placeholder-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-1.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-2.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-3.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-4.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-5.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/blog-placeholder-about.jpg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HeaderLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/HeaderLink.astro -------------------------------------------------------------------------------- /src/components/RecentPublications.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/RecentPublications.astro -------------------------------------------------------------------------------- /src/components/TagLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/TagLink.astro -------------------------------------------------------------------------------- /src/components/ThemeIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/components/ThemeIcon.astro -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content/blog/first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/blog/first-post.md -------------------------------------------------------------------------------- /src/content/blog/markdown-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/blog/markdown-style-guide.md -------------------------------------------------------------------------------- /src/content/blog/second-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/blog/second-post.md -------------------------------------------------------------------------------- /src/content/blog/third-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/blog/third-post.md -------------------------------------------------------------------------------- /src/content/blog/using-mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/blog/using-mdx.mdx -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/BlogPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/layouts/BlogPost.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/blog/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/pages/tags/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/tags/[...slug].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eAntillon/void-astro/HEAD/tsconfig.json --------------------------------------------------------------------------------