├── .eslintignore
├── _astro_nano.png
├── _lighthouse.png
├── public
├── patrick.webp
├── astro-nano.png
├── lighthouse.png
├── astro-sphere.jpg
├── fonts
│ ├── atkinson-bold.woff
│ ├── MonaSans-Light.woff2
│ ├── atkinson-regular.woff
│ ├── MonaSans-Regular.woff2
│ └── MonaSans-SemiBold.woff2
├── favicon-dark.svg
├── favicon-light.svg
├── deploy_netlify.svg
└── deploy_vercel.svg
├── src
├── env.d.ts
├── components
│ ├── Container.astro
│ ├── FormattedDate.astro
│ ├── Link.astro
│ ├── BackToTop.astro
│ ├── Header.astro
│ ├── BackToPrev.astro
│ ├── ArrowCard.astro
│ ├── Footer.astro
│ └── Head.astro
├── content
│ ├── blog
│ │ ├── 05-markdown-syntax
│ │ │ ├── spongebob.webp
│ │ │ └── index.md
│ │ ├── 07-year-sorting-example
│ │ │ └── index.md
│ │ ├── 06-mdx-syntax
│ │ │ ├── component.astro
│ │ │ └── index.mdx
│ │ ├── 08-draft-example
│ │ │ └── index.md
│ │ ├── 02-blog-collection
│ │ │ └── index.md
│ │ ├── 04-work-collection
│ │ │ └── index.md
│ │ ├── 01-getting-started
│ │ │ └── index.md
│ │ └── 03-projects-collection
│ │ │ └── index.md
│ ├── work
│ │ ├── facebook.md
│ │ ├── apple.md
│ │ ├── mcdonalds.md
│ │ └── google.md
│ ├── config.ts
│ └── projects
│ │ ├── project-1
│ │ └── index.md
│ │ └── project-2
│ │ └── index.md
├── types.ts
├── pages
│ ├── robots.txt.ts
│ ├── rss.xml.ts
│ ├── projects
│ │ ├── index.astro
│ │ └── [...slug].astro
│ ├── blog
│ │ ├── [...slug].astro
│ │ └── index.astro
│ ├── work
│ │ └── index.astro
│ └── index.astro
├── layouts
│ └── PageLayout.astro
├── consts.ts
├── lib
│ └── utils.ts
└── styles
│ └── global.css
├── .vscode
├── extensions.json
└── launch.json
├── tsconfig.json
├── .gitignore
├── astro.config.mjs
├── tailwind.config.mjs
├── .eslintrc.cjs
├── LICENSE
├── package.json
├── README.md
├── _deploy_netlify.svg
└── _deploy_vercel.svg
/.eslintignore:
--------------------------------------------------------------------------------
1 | .vscode/
2 | dist/
3 | node_modules/
4 | public/
5 |
--------------------------------------------------------------------------------
/_astro_nano.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/_astro_nano.png
--------------------------------------------------------------------------------
/_lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/_lighthouse.png
--------------------------------------------------------------------------------
/public/patrick.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/public/patrick.webp
--------------------------------------------------------------------------------
/public/astro-nano.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/public/astro-nano.png
--------------------------------------------------------------------------------
/public/lighthouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/public/lighthouse.png
--------------------------------------------------------------------------------
/public/astro-sphere.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markhorn-dev/astro-nano/HEAD/public/astro-sphere.jpg
--------------------------------------------------------------------------------
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
42 | I am a minimal, seo friendly, accessible portfolio and blog for developers. 43 | I am an even more lightweight version of my popular theme 44 | 45 | Astro Sphere 46 | . 47 | I have a lighthouse scores of 100 across the board for performance, 48 | accesibility, best practices and SEO. 49 |
50 |51 | I come packed with full type safety, a sitemap, an rss feed, markdown 52 | and mdx support (use components in your markdown) through astro integrations. 53 | I am styled with tailwind and come preconfigured with light, dark and 54 | system/os theme preferences out of the box. 55 |
56 |57 | Visit 58 | 59 | Astro Nano on Github 60 | 61 | to fork the repository, read the docs or one-click deploy on Vercel or Netlify. 62 |
63 |137 | If you want to get in touch with me about something or just to say hi, 138 | reach out on social media or send me an email. 139 |
140 |