Skip to content

Commit

Permalink
Fix: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
psparwez committed Dec 1, 2024
1 parent 492e0c6 commit bc0d070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Before starting, make sure you have the following installed:
1. **Clone the repository:**

```bash
git clone https://github.com/your-username/travel-website.git
git clone https://github.com/psparwez/travel-ui-ux.git
```

2. **Navigate to the project folder:**
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useState } from "react"

const Navbar = () => {
// Renaming the state hook for clarity
const [isNavOpen, setIsNavOpen] = useState(false)
const [isNavOpen, setIsNavOpen] = useState<boolean>(false)

const toggleNav = () => {
setIsNavOpen(!isNavOpen)
Expand Down

0 comments on commit bc0d070

Please sign in to comment.