├── .npmrc
├── .prettierrc
├── public
├── opengraph.jpg
├── robots.txt
└── favicon.svg
├── src
├── assets
│ ├── hero.png
│ ├── hero-alt.png
│ ├── blog
│ │ ├── blog1.jpg
│ │ ├── blog2.jpg
│ │ ├── blog4.jpg
│ │ ├── blog5.jpg
│ │ ├── blog7.jpg
│ │ ├── blog3.avif
│ │ ├── blog6.avif
│ │ ├── blog8.avif
│ │ └── blog9.avif
│ ├── authors
│ │ ├── erika.webp
│ │ ├── joshua.webp
│ │ └── mario.webp
│ ├── logo.svg
│ ├── logo-dark.svg
│ └── hero-source.svg
├── env.d.ts
├── components
│ ├── container.astro
│ ├── pagetitle.astro
│ ├── themeswitch.astro
│ ├── ui
│ │ ├── label.astro
│ │ ├── button.astro
│ │ └── link.astro
│ ├── authorcard.astro
│ ├── footer.astro
│ ├── postlist.astro
│ ├── navbar.astro
│ └── contactform.astro
├── utils
│ ├── content.js
│ └── all.js
├── content
│ ├── blog
│ │ ├── template.md
│ │ ├── this-bread-pudding-will-give-you-all-the-fall-feels.md
│ │ ├── nothing-new-about-undermining-women-autonomy.md
│ │ ├── every-next-level-of-your-life-will-demand-a-different-you.md
│ │ ├── complete-guide-fullstack-development.md
│ │ ├── essential-data-structures-algorithms.md
│ │ ├── how-to-become-frontend-master.md
│ │ ├── 14-architectural-design-ideas-for-spacious-interior.md
│ │ └── kitchensink.mdx
│ └── config.ts
├── pages
│ ├── archive.astro
│ ├── index.astro
│ ├── about.astro
│ ├── contact.astro
│ └── blog
│ │ └── [...slug].astro
├── data
│ ├── authors.ts
│ └── category.ts
└── layouts
│ └── Layout.astro
├── .vscode
├── extensions.json
└── launch.json
├── tsconfig.json
├── .gitignore
├── astro.config.mjs
├── tailwind.config.cjs
├── package.json
├── README.md
└── LICENSE
/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "tabWidth": 2,
3 | "useTabs": false,
4 | "bracketSameLine": true
5 | }
--------------------------------------------------------------------------------
/public/opengraph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/public/opengraph.jpg
--------------------------------------------------------------------------------
/src/assets/hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/hero.png
--------------------------------------------------------------------------------
/src/assets/hero-alt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/web3templates/stablo-astro/HEAD/src/assets/hero-alt.png
--------------------------------------------------------------------------------
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
11 |
27 | About {author.name} 28 |
29 |{author.bio}
} 32 |47 | We're a multi-cultural team from around the world! We come from diverse 48 | backgrounds, bringing different personalities, experiences and skills to 49 | the job. This is what makes our team so special. 50 |
51 |23 | Have something to say? We are here to help. Fill up the form or send 24 | email or call phone. 25 |
26 |66 | {post.data.excerpt} 67 |
68 | ) 69 | } 70 |71 | {author.name} 72 |
73 |