This is the official Vue 3 website for the KOKOS Namibia AI Learning Platform.
- Vue 3 Composition API
- Custom KOKOS Namibia branding
- Contact form with Formspree integration
- Optimized for educational deployment
We welcome your contributions! Follow these steps to fork, edit, and submit changes:
- Go to https://github.com/brianronock/kokos.git
- Click the “Fork” button in the top-right corner.
- This creates a copy of the repository under your GitHub account.
- On your fork’s GitHub page, click the “Code” button and copy the HTTPS URL.
- Open your terminal and run:
git clone https://github.com/brianronock/kokos.git
cd kokos- Create a new branch to keep your work organized:
git checkout -b feature/your-feature-name(Use a meaningful name like feature/footer or fix/navbar.)
- Edit files in your local repository using your preferred code editor.
- Save and test your changes:
npm install
npm run dev- Visit http://localhost:5173/ in your browser to check your changes.
- Stage and commit your changes:
git add .
git commit -m "Add footer to App.vue"(Use a clear, concise commit message describing your changes.)
- Push your branch to your GitHub fork:
git push origin feature/your-feature-name- Go to your fork on GitHub.
- Click “Compare & pull request.”
- Write a clear description of what you did.
- Select the main branch of the original repo (brianronock/kokos) as the base branch to merge into.
- Click “Create pull request.”
- The maintainers (Prof. Rhoda or Brian) will review your PR.
- They might ask for changes or approve it.
- Once approved, your changes will be merged into the main branch.
- Keep PRs focused on a single feature or fix.
- Be polite and open to feedback (haha)..
- If unsure about something, open an issue to discuss it before starting.
- Delete your branch after the PR is merged to keep your fork tidy.
Thank you for helping make KOKOS Namibia a success!