Skip to content

Latest commit

Β 

History

History
46 lines (34 loc) Β· 1.16 KB

File metadata and controls

46 lines (34 loc) Β· 1.16 KB

Chen Yang - Academic Homepage

This is my personal academic website built with Astro and deployed on GitHub Pages.

🌐 Website

Visit: https://yangchen73.github.io

πŸš€ Tech Stack

πŸ“ Project Structure

/
β”œβ”€β”€ 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

πŸ› οΈ Local Development

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

# Preview build
npm run preview