My Portfolio website built with Astro, React, and Tailwind CSS.
- Astro - The web framework for content-driven websites
- React - UI component library
- Tailwind CSS - Utility-first CSS framework
- TypeScript - For type safety and better developer experience
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ └── React components (.tsx)
│ ├── layouts/
│ │ └── Layout files (.astro)
│ └── pages/
│ └── Page components (.astro)
└── package.json
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 |
-
Clone the repository:
git clone [your-repo-url]
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open http://localhost:4321 in your browser
- Modify
src/styles/global.css
for global styles - Update Tailwind configuration in
tailwind.config.mjs
- Add new components in
src/components/
- Create new pages in
src/pages/
Contributions are welcome! Please feel free to submit a Pull Request.