# astro-personal-website Personal Website template with blog and themes made with Astro ## Project Strucutre ``` php ├── src/ │ ├── components/ │ │ ├── cs/ │ │ │ ├── TimeLine │ │ ├── BaseHead.astro │ │ ├── Card.astro │ │ ├── Footer.astro │ │ ├── Header.astro │ │ └-─ HorizontalCard.jsx │ │ └-─ SideBar.jsx │ ├── layouts/ │ │ └-─ BaseLayout.astro │ │ └-─ PostLayout.astro │ └── pages/ │ │ ├── posts/ │ │ │ ├── post1.md │ │ │ ├── post2.md │ │ │ └── post3.md │ │ └── index.astro │ └── styles/ │ └-─ global.css ├── public/ │ ├── favicon.svg │ └-─ social-image.png ├── astro.config.mjs ├── package.json └── tsconfig.json ```