This is the frontend for the WordWise application, a language learning platform.
Before you begin, ensure you have the following installed on your system:
- Node.js (preferably the latest LTS version)
- npm (usually comes with Node.js)
-
Navigate to the frontend directory:
cd frontend
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
This command will start the Vite development server and watch for changes in your Tailwind CSS input file.
-
Open your browser and navigate to
http://localhost:5173
(or the URL provided in the console) to view the application.
In the project directory, you can run:
npm run dev
: Runs the app in development mode with hot-reloading and Tailwind CSS watching.npm run build
: Builds the app for production to thedist
folder.npm run preview
: Locally preview the production build.
src/
: Contains the source code for the applicationcomponents/
: Reusable componentspages/
: Individual page componentsstyles/
: CSS files, including Tailwind CSS input file
public/
: Static assets that will be served directly
- Vite: Next Generation Frontend Tooling
- Tailwind CSS: A utility-first CSS framework
Please read the main project's CONTRIBUTING.md file for details on our code of conduct and the process for submitting pull requests.
This project is licensed under the MIT License - see the main project's LICENSE.md file for details.