This repository contains the source code for the DC Dragons Karate official website.
DC Dragons Karate is a martial arts school located in Olive Branch, MS. This website serves as our digital dojo, providing information about our classes, instructors, philosophy, and allowing new students to get in touch.
This project is built using:
- React - UI library
- Vite - Build tool and development server
- TailwindCSS - CSS Framework
- DaisyUI - CSS Styling plugin for Tailwind
- FontAwesome Icons - Icon package
- CSS Modules - For component-scoped styling
- Node.js (v16+)
- npm
-
Clone the repository
git clone https://github.com/johncanthony/dcdragonswebsite_react.git cd dcdragonskarate -
Install dependencies
npm install
-
Start the development server
npm run dev
-
Open your browser and visit
http://localhost:5173
npm run buildThe built files will be in the dist directory.
dcdragonskarate/
├── public/ # Static assets
├── src/
│ ├── assets/ # Images, fonts, etc.
│ ├── components/ # Reusable components
│ ├── App.jsx # Main app component
│ ├── main.jsx # Entry point
│ └── ...
├── index.html # HTML template
├── vite.config.js # Vite configuration
└── package.json # Project dependencies and scripts
