A personal website built with Astro and Svelte frameworks with Tailwind CSS to showcase technical projects, academic achievements, professional aspirations, and writing samples.
This project uses GitHub Actions for continuous integration and deployment:
Build & Lint Astro (.github/workflows/build.yml
):
Playwright Tests (.github/workflows/playwright.yml
):
GitHub Pages Deployment (auto-configured by GitHub):
Cloudflare Pages (configured in Cloudflare dashboard):
āāā .github/workflows/ # CI/CD workflow configurations
āāā public/ # Static assets (images, fonts, etc.)
āāā src/
āĀ Ā āāā components/ # Reusable UI components using Astro or Svelte
āĀ Ā āāā content/ # Content collections (projects, writing samples, etc.)
āĀ Ā āāā layouts/ # Page layout templates
āĀ Ā āāā pages/ # Page components and routes
āĀ Ā āāā styles/
āāā tests/ # TypeScript Playwright tests
āāā .prettierrc # Prettier configuration
āāā astro.config.mjs # Astro configuration
āāā eslint.config.js # ESLint configuration
āāā lighthouserc.json # Lighthouse configuration
āāā eslint.config.mjs # ESLint configuration
āāā playwright.config.ts # Playwright configuration
āāā svelte.config.ts # Svelte configuration
āāā tsconfig.json # TypeScript configuration
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro -- --help |
Get help using the Astro CLI |
npm install
npm run dev
This project is licensed under the MIT License, see the license file for details.