├── .npmrc
├── .prettierrc
├── src
├── assets
│ ├── hero.png
│ ├── hero-alt.png
│ ├── authors
│ │ ├── erika.webp
│ │ ├── mario.webp
│ │ └── joshua.webp
│ ├── logo.svg
│ ├── logo-dark.svg
│ └── hero-source.svg
├── env.d.ts
├── components
│ ├── container.astro
│ ├── themeswitch.astro
│ ├── ui
│ │ ├── label.astro
│ │ ├── button.astro
│ │ └── link.astro
│ ├── navbar.astro
│ ├── authorcard.astro
│ ├── footer.astro
│ ├── postheader.astro
│ ├── TagSelector.jsx
│ └── card.astro
├── utils
│ ├── content.js
│ └── all.js
├── styles
│ └── styles.css
├── content
│ ├── config.ts
│ └── 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
│ │ ├── exploring-hidden-gems.md
│ │ ├── complete-guide-fullstack-development.md
│ │ ├── future-of-user-interface-design.md
│ │ ├── quantum-computing.md
│ │ ├── essential-data-structures-algorithms.md
│ │ ├── advancements-in-ai.md
│ │ ├── minimalist-lifestyle.md
│ │ ├── personal-development-growth.md
│ │ ├── work-life-balance.md
│ │ ├── how-to-become-frontend-master.md
│ │ └── 14-architectural-design-ideas-for-spacious-interior.md
├── layouts
│ └── Layout.astro
├── data
│ ├── authors.ts
│ └── category.ts
├── pages
│ ├── index.astro
│ └── blog
│ │ └── [...slug].astro
└── kitchensink.mdx
├── public
├── opengraph.jpg
├── robots.txt
└── favicon.svg
├── .vscode
├── extensions.json
└── launch.json
├── .gitignore
├── tailwind.config.cjs
├── tsconfig.json
├── astro.config.mjs
├── package.json
└── README.md
/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "tabWidth": 2,
3 | "useTabs": false,
4 | "bracketSameLine": true
5 | }
--------------------------------------------------------------------------------
/src/assets/hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Charca/astro-blog-view-transitions/HEAD/src/assets/hero.png
--------------------------------------------------------------------------------
/public/opengraph.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Charca/astro-blog-view-transitions/HEAD/public/opengraph.jpg
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Allow: /
3 |
4 | Sitemap: http://astroship.web3templates.com/sitemap-index.xml
--------------------------------------------------------------------------------
/src/assets/hero-alt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Charca/astro-blog-view-transitions/HEAD/src/assets/hero-alt.png
--------------------------------------------------------------------------------
/src/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
27 | About {author.name} 28 |
29 |{author.bio}
} 32 |47 | {author.name} 48 |
49 |71 | {post.data.excerpt} 72 |
73 | ) 74 | } 75 |