Skip to content

Commit

Permalink
READY
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyngo001 committed Oct 15, 2024
1 parent bd3b6f4 commit 9dc6ab2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion better/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
"devDependencies": {
"gh-pages": "^6.2.0"
},
"homepage": "https://hcp-uw.github.io/aliment"
"homepage": "https://hcp.github.io/aliment"
}
8 changes: 4 additions & 4 deletions better/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ function App() {
return (
<div className='full-app'>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/recipes" element={<Recipes />} />
<Route path="/about" element={<About />} />
<Route path="/contact" element={<Contact />} />
<Route path="/aliment" element={<Home />} />
<Route path="/aliment/recipes" element={<Recipes />} />
<Route path="/aliment/about" element={<About />} />
<Route path="/aliment/contact" element={<Contact />} />
</Routes>
</div>

Expand Down
10 changes: 5 additions & 5 deletions better/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ import './Navbar.css';
export function Navbar() {
return (
<nav className='Navbar'>
<Link to = "/"></Link>
<Link to = "/aliment"></Link>
<ul>
<li>
<Link to="/">Home</Link>
<Link to="/aliment">Home</Link>
</li>
<li>
<Link to="/recipes">Recipes</Link>
<Link to="/aliment/recipes">Recipes</Link>
</li>
<li>
<Link to="/about">About</Link>
<Link to="/aliment/about">About</Link>
</li>
<li>
<Link to="/contact">Contact</Link>
<Link to="/aliment/contact">Contact</Link>
</li>
</ul>
</nav>
Expand Down
Binary file removed better/stuff.zip
Binary file not shown.

0 comments on commit 9dc6ab2

Please sign in to comment.