├── .github └── workflows │ └── stale.yaml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── _astrosphere.jpg ├── _deploy_netlify.svg ├── _deploy_vercel.svg ├── _lighthouse.png ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── brand.svg ├── copy.svg ├── favicon.svg ├── fonts │ ├── atkinson-bold.woff │ └── atkinson-regular.woff ├── js │ ├── animate.js │ ├── bg.js │ ├── copy.js │ ├── scroll.js │ └── theme.js ├── open-graph.jpg ├── robots.txt ├── social.svg ├── stack.svg └── ui.svg ├── src ├── components │ ├── ArrowCard.tsx │ ├── BaseHead.astro │ ├── Container.astro │ ├── Counter.tsx │ ├── Drawer.astro │ ├── Footer.astro │ ├── Header.astro │ ├── MeteorShower.astro │ ├── Search.tsx │ ├── SearchBar.tsx │ ├── SearchCollection.tsx │ ├── StackCard.astro │ └── TwinklingStars.astro ├── consts.ts ├── content │ ├── blog │ │ ├── 01-astro-sphere-file-structure │ │ │ └── index.md │ │ ├── 02-astro-sphere-getting-started │ │ │ └── index.md │ │ ├── 03-astro-sphere-add-new-post-or-projects │ │ │ └── index.md │ │ ├── 04-astro-sphere-writing-markdown │ │ │ ├── index.md │ │ │ └── spongebob.png │ │ ├── 05-astro-sphere-writing-mdx │ │ │ ├── MyComponent.astro │ │ │ └── index.mdx │ │ └── 06-astro-sphere-social-links │ │ │ └── index.md │ ├── config.ts │ ├── legal │ │ ├── privacy.md │ │ └── terms.md │ ├── projects │ │ ├── project-1 │ │ │ └── index.md │ │ ├── project-2 │ │ │ └── index.md │ │ ├── project-3 │ │ │ └── index.md │ │ └── project-4 │ │ │ └── index.md │ └── work │ │ ├── apple.md │ │ ├── facebook.md │ │ ├── google.md │ │ └── mcdonalds.md ├── env.d.ts ├── layouts │ ├── ArticleBottomLayout.astro │ ├── ArticleTopLayout.astro │ ├── BottomLayout.astro │ ├── PageLayout.astro │ └── TopLayout.astro ├── lib │ └── utils.ts ├── pages │ ├── blog │ │ ├── [...slug].astro │ │ └── index.astro │ ├── index.astro │ ├── legal │ │ └── [...slug].astro │ ├── projects │ │ ├── [...slug].astro │ │ └── index.astro │ ├── robots.txt.ts │ ├── rss.xml.ts │ ├── search │ │ └── index.astro │ └── work │ │ └── index.astro ├── styles │ └── global.css └── types.ts ├── tailwind.config.mjs └── tsconfig.json /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/README.md -------------------------------------------------------------------------------- /_astrosphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/_astrosphere.jpg -------------------------------------------------------------------------------- /_deploy_netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/_deploy_netlify.svg -------------------------------------------------------------------------------- /_deploy_vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/_deploy_vercel.svg -------------------------------------------------------------------------------- /_lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/_lighthouse.png -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/brand.svg -------------------------------------------------------------------------------- /public/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/copy.svg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/atkinson-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/fonts/atkinson-bold.woff -------------------------------------------------------------------------------- /public/fonts/atkinson-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/fonts/atkinson-regular.woff -------------------------------------------------------------------------------- /public/js/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/js/animate.js -------------------------------------------------------------------------------- /public/js/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/js/bg.js -------------------------------------------------------------------------------- /public/js/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/js/copy.js -------------------------------------------------------------------------------- /public/js/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/js/scroll.js -------------------------------------------------------------------------------- /public/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/js/theme.js -------------------------------------------------------------------------------- /public/open-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/open-graph.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/social.svg -------------------------------------------------------------------------------- /public/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/stack.svg -------------------------------------------------------------------------------- /public/ui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/public/ui.svg -------------------------------------------------------------------------------- /src/components/ArrowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/ArrowCard.tsx -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/Container.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Container.astro -------------------------------------------------------------------------------- /src/components/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Counter.tsx -------------------------------------------------------------------------------- /src/components/Drawer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Drawer.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/MeteorShower.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/MeteorShower.astro -------------------------------------------------------------------------------- /src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/Search.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/SearchCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/SearchCollection.tsx -------------------------------------------------------------------------------- /src/components/StackCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/StackCard.astro -------------------------------------------------------------------------------- /src/components/TwinklingStars.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/components/TwinklingStars.astro -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content/blog/01-astro-sphere-file-structure/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/01-astro-sphere-file-structure/index.md -------------------------------------------------------------------------------- /src/content/blog/02-astro-sphere-getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/02-astro-sphere-getting-started/index.md -------------------------------------------------------------------------------- /src/content/blog/03-astro-sphere-add-new-post-or-projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/03-astro-sphere-add-new-post-or-projects/index.md -------------------------------------------------------------------------------- /src/content/blog/04-astro-sphere-writing-markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/04-astro-sphere-writing-markdown/index.md -------------------------------------------------------------------------------- /src/content/blog/04-astro-sphere-writing-markdown/spongebob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/04-astro-sphere-writing-markdown/spongebob.png -------------------------------------------------------------------------------- /src/content/blog/05-astro-sphere-writing-mdx/MyComponent.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/05-astro-sphere-writing-mdx/MyComponent.astro -------------------------------------------------------------------------------- /src/content/blog/05-astro-sphere-writing-mdx/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/05-astro-sphere-writing-mdx/index.mdx -------------------------------------------------------------------------------- /src/content/blog/06-astro-sphere-social-links/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/blog/06-astro-sphere-social-links/index.md -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/legal/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/legal/privacy.md -------------------------------------------------------------------------------- /src/content/legal/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/legal/terms.md -------------------------------------------------------------------------------- /src/content/projects/project-1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/projects/project-1/index.md -------------------------------------------------------------------------------- /src/content/projects/project-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/projects/project-2/index.md -------------------------------------------------------------------------------- /src/content/projects/project-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/projects/project-3/index.md -------------------------------------------------------------------------------- /src/content/projects/project-4/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/projects/project-4/index.md -------------------------------------------------------------------------------- /src/content/work/apple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/work/apple.md -------------------------------------------------------------------------------- /src/content/work/facebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/work/facebook.md -------------------------------------------------------------------------------- /src/content/work/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/work/google.md -------------------------------------------------------------------------------- /src/content/work/mcdonalds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/content/work/mcdonalds.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/ArticleBottomLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/layouts/ArticleBottomLayout.astro -------------------------------------------------------------------------------- /src/layouts/ArticleTopLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/layouts/ArticleTopLayout.astro -------------------------------------------------------------------------------- /src/layouts/BottomLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/layouts/BottomLayout.astro -------------------------------------------------------------------------------- /src/layouts/PageLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/layouts/PageLayout.astro -------------------------------------------------------------------------------- /src/layouts/TopLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/layouts/TopLayout.astro -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/blog/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/legal/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/legal/[...slug].astro -------------------------------------------------------------------------------- /src/pages/projects/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/projects/[...slug].astro -------------------------------------------------------------------------------- /src/pages/projects/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/projects/index.astro -------------------------------------------------------------------------------- /src/pages/robots.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/robots.txt.ts -------------------------------------------------------------------------------- /src/pages/rss.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/rss.xml.ts -------------------------------------------------------------------------------- /src/pages/search/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/search/index.astro -------------------------------------------------------------------------------- /src/pages/work/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/pages/work/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markhorn-dev/astro-sphere/HEAD/tsconfig.json --------------------------------------------------------------------------------