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