├── .gitignore ├── LICENSE ├── README.md ├── astro.config.mjs ├── milkyway-lighthouse-score.svg ├── package.json ├── public ├── _headers └── images │ ├── 404.webp │ ├── GitHub.webp │ ├── blog-post.webp │ ├── blog.webp │ ├── favicon.svg │ ├── github-mark-white.svg │ ├── github-mark.svg │ ├── image-1.webp │ ├── image-2.webp │ ├── laptop.webp │ ├── li-in-white.png │ ├── li-in.png │ ├── mail-white.svg │ ├── mail.svg │ ├── space.webp │ └── youtube.webp ├── src ├── components │ ├── Card.astro │ ├── CardPost.astro │ ├── Footer.astro │ ├── Header.astro │ ├── Navigation.astro │ └── ThemeIcon.astro ├── content.config.ts ├── content │ ├── posts │ │ ├── post-1.md │ │ ├── post-2.md │ │ ├── post-3.md │ │ └── post-4.md │ └── projects │ │ ├── project-1.md │ │ └── project-2.md ├── env.d.ts ├── layouts │ ├── Layout.astro │ ├── MarkdownPostsLayout.astro │ └── MarkdownWorksLayout.astro ├── pages │ ├── 404.astro │ ├── index.astro │ ├── posts.astro │ ├── posts │ │ └── [...slug].astro │ ├── projects │ │ └── [...slug].astro │ └── works.astro └── styles │ └── global.css └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /milkyway-lighthouse-score.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/milkyway-lighthouse-score.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/package.json -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- 1 | /images/* 2 | Cache-Control: public, max-age=31536000, immutable -------------------------------------------------------------------------------- /public/images/404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/404.webp -------------------------------------------------------------------------------- /public/images/GitHub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/GitHub.webp -------------------------------------------------------------------------------- /public/images/blog-post.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/blog-post.webp -------------------------------------------------------------------------------- /public/images/blog.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/blog.webp -------------------------------------------------------------------------------- /public/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/favicon.svg -------------------------------------------------------------------------------- /public/images/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/github-mark-white.svg -------------------------------------------------------------------------------- /public/images/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/github-mark.svg -------------------------------------------------------------------------------- /public/images/image-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/image-1.webp -------------------------------------------------------------------------------- /public/images/image-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/image-2.webp -------------------------------------------------------------------------------- /public/images/laptop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/laptop.webp -------------------------------------------------------------------------------- /public/images/li-in-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/li-in-white.png -------------------------------------------------------------------------------- /public/images/li-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/li-in.png -------------------------------------------------------------------------------- /public/images/mail-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/mail-white.svg -------------------------------------------------------------------------------- /public/images/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/mail.svg -------------------------------------------------------------------------------- /public/images/space.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/space.webp -------------------------------------------------------------------------------- /public/images/youtube.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/public/images/youtube.webp -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/components/CardPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/CardPost.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Navigation.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/Navigation.astro -------------------------------------------------------------------------------- /src/components/ThemeIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/components/ThemeIcon.astro -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/posts/post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/posts/post-1.md -------------------------------------------------------------------------------- /src/content/posts/post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/posts/post-2.md -------------------------------------------------------------------------------- /src/content/posts/post-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/posts/post-3.md -------------------------------------------------------------------------------- /src/content/posts/post-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/posts/post-4.md -------------------------------------------------------------------------------- /src/content/projects/project-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/projects/project-1.md -------------------------------------------------------------------------------- /src/content/projects/project-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/content/projects/project-2.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/layouts/MarkdownPostsLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/layouts/MarkdownPostsLayout.astro -------------------------------------------------------------------------------- /src/layouts/MarkdownWorksLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/layouts/MarkdownWorksLayout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/posts.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/posts.astro -------------------------------------------------------------------------------- /src/pages/posts/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/posts/[...slug].astro -------------------------------------------------------------------------------- /src/pages/projects/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/projects/[...slug].astro -------------------------------------------------------------------------------- /src/pages/works.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/pages/works.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttomczak3/Milky-Way/HEAD/tsconfig.json --------------------------------------------------------------------------------