This is my personal academic website built with Astro and deployed on GitHub Pages.
Visit: https://yangchen73.github.io
- Framework: Astro - Modern static site generator
- Styling: Tailwind CSS - Utility-first CSS framework
- Deployment: GitHub Pages + GitHub Actions
- Fonts: Inter + Noto Sans SC
/
├── src/
│ ├── layouts/ # Layout components
│ ├── pages/ # Page files
│ └── styles/ # Style files
├── public/ # Static assets
│ ├── profile.jpg # Profile photo
│ ├── cv.pdf # Resume
│ └── favicon.svg # Website icon
├── .github/workflows/ # GitHub Actions configuration
└── package.json
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
# Preview build
npm run preview