├── .gitignore ├── .npmrc ├── .prettierrc ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg ├── opengraph.jpg └── robots.txt ├── src ├── assets │ ├── authors │ │ ├── erika.webp │ │ ├── joshua.webp │ │ └── mario.webp │ ├── blog │ │ ├── blog1.jpg │ │ ├── blog2.jpg │ │ ├── blog3.avif │ │ ├── blog4.jpg │ │ ├── blog5.jpg │ │ ├── blog6.avif │ │ ├── blog7.jpg │ │ ├── blog8.avif │ │ └── blog9.avif │ ├── hero-alt.png │ ├── hero-source.svg │ ├── hero.png │ ├── logo-dark.svg │ └── logo.svg ├── components │ ├── authorcard.astro │ ├── contactform.astro │ ├── container.astro │ ├── footer.astro │ ├── navbar.astro │ ├── pagetitle.astro │ ├── postlist.astro │ ├── themeswitch.astro │ └── ui │ │ ├── button.astro │ │ ├── label.astro │ │ └── link.astro ├── content │ ├── blog │ │ ├── 14-architectural-design-ideas-for-spacious-interior.md │ │ ├── complete-guide-fullstack-development.md │ │ ├── essential-data-structures-algorithms.md │ │ ├── every-next-level-of-your-life-will-demand-a-different-you.md │ │ ├── how-to-become-frontend-master.md │ │ ├── kitchensink.mdx │ │ ├── nothing-new-about-undermining-women-autonomy.md │ │ ├── template.md │ │ └── this-bread-pudding-will-give-you-all-the-fall-feels.md │ └── config.ts ├── data │ ├── authors.ts │ └── category.ts ├── env.d.ts ├── layouts │ └── Layout.astro ├── pages │ ├── about.astro │ ├── archive.astro │ ├── blog │ │ └── [...slug].astro │ ├── contact.astro │ └── index.astro └── utils │ ├── all.js │ └── content.js ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/opengraph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/public/opengraph.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/assets/authors/erika.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/authors/erika.webp -------------------------------------------------------------------------------- /src/assets/authors/joshua.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/authors/joshua.webp -------------------------------------------------------------------------------- /src/assets/authors/mario.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/authors/mario.webp -------------------------------------------------------------------------------- /src/assets/blog/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog1.jpg -------------------------------------------------------------------------------- /src/assets/blog/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog2.jpg -------------------------------------------------------------------------------- /src/assets/blog/blog3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog3.avif -------------------------------------------------------------------------------- /src/assets/blog/blog4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog4.jpg -------------------------------------------------------------------------------- /src/assets/blog/blog5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog5.jpg -------------------------------------------------------------------------------- /src/assets/blog/blog6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog6.avif -------------------------------------------------------------------------------- /src/assets/blog/blog7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog7.jpg -------------------------------------------------------------------------------- /src/assets/blog/blog8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog8.avif -------------------------------------------------------------------------------- /src/assets/blog/blog9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/blog/blog9.avif -------------------------------------------------------------------------------- /src/assets/hero-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/hero-alt.png -------------------------------------------------------------------------------- /src/assets/hero-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/hero-source.svg -------------------------------------------------------------------------------- /src/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/hero.png -------------------------------------------------------------------------------- /src/assets/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/logo-dark.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/authorcard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/authorcard.astro -------------------------------------------------------------------------------- /src/components/contactform.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/contactform.astro -------------------------------------------------------------------------------- /src/components/container.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/container.astro -------------------------------------------------------------------------------- /src/components/footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/footer.astro -------------------------------------------------------------------------------- /src/components/navbar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/navbar.astro -------------------------------------------------------------------------------- /src/components/pagetitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/pagetitle.astro -------------------------------------------------------------------------------- /src/components/postlist.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/postlist.astro -------------------------------------------------------------------------------- /src/components/themeswitch.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/themeswitch.astro -------------------------------------------------------------------------------- /src/components/ui/button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/ui/button.astro -------------------------------------------------------------------------------- /src/components/ui/label.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/ui/label.astro -------------------------------------------------------------------------------- /src/components/ui/link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/components/ui/link.astro -------------------------------------------------------------------------------- /src/content/blog/14-architectural-design-ideas-for-spacious-interior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/14-architectural-design-ideas-for-spacious-interior.md -------------------------------------------------------------------------------- /src/content/blog/complete-guide-fullstack-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/complete-guide-fullstack-development.md -------------------------------------------------------------------------------- /src/content/blog/essential-data-structures-algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/essential-data-structures-algorithms.md -------------------------------------------------------------------------------- /src/content/blog/every-next-level-of-your-life-will-demand-a-different-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/every-next-level-of-your-life-will-demand-a-different-you.md -------------------------------------------------------------------------------- /src/content/blog/how-to-become-frontend-master.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/how-to-become-frontend-master.md -------------------------------------------------------------------------------- /src/content/blog/kitchensink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/kitchensink.mdx -------------------------------------------------------------------------------- /src/content/blog/nothing-new-about-undermining-women-autonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/nothing-new-about-undermining-women-autonomy.md -------------------------------------------------------------------------------- /src/content/blog/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/template.md -------------------------------------------------------------------------------- /src/content/blog/this-bread-pudding-will-give-you-all-the-fall-feels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/blog/this-bread-pudding-will-give-you-all-the-fall-feels.md -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/data/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/data/authors.ts -------------------------------------------------------------------------------- /src/data/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/data/category.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/archive.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/pages/archive.astro -------------------------------------------------------------------------------- /src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /src/pages/contact.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/pages/contact.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/utils/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/utils/all.js -------------------------------------------------------------------------------- /src/utils/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/utils/content.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/tsconfig.json --------------------------------------------------------------------------------