Skip to content

Commit

Permalink
second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kaleb110 committed Aug 2, 2024
1 parent 8427cab commit 09efebb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Quiz App
# Trivia Quiz App

![Meals Website](https://i.postimg.cc/9089SyRZ/Screenshot-2024-08-02-104152.png)

## Description
Quiz App is a web application designed to provide an interactive platform for users to test their knowledge on various topics. Our aim is to make learning fun and engaging through quizzes that challenge and educate.
Expand All @@ -19,5 +21,5 @@ Quiz App is a web application designed to provide an interactive platform for us

1. Clone the repository:
```bash
git clone https://github.com/your-username/quiz-app.git
git clone https://github.com/kaleb110/quiz-app.git
cd quiz-app
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "my-project",
"name": "trivia-app",
"homepage": "https://kaleb110.github.io/quiz-app/",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"react": "^18.3.1",
Expand Down
2 changes: 1 addition & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { BrowserRouter } from "react-router-dom";

ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<BrowserRouter>
<BrowserRouter basename="/quiz-app">
<App />
</BrowserRouter>
</React.StrictMode>
Expand Down

0 comments on commit 09efebb

Please sign in to comment.