mirror of
https://github.com/DevEhChad/chadsreactproject.git
synced 2025-11-08 13:31:35 +00:00
routes
This commit is contained in:
@@ -19,10 +19,10 @@ function App() {
|
||||
<Routes>
|
||||
<Route path="/" exact element={<Home />} />
|
||||
{/* <Route path="/shop" exact element={<Shop />} /> */}
|
||||
{/*<Route path="/applications" exact element={<Applications />} /> */}
|
||||
<Route path="/applications" exact element={<Applications />} />
|
||||
<Route path="/socials" exact element={<Socials />} />
|
||||
<Route path="/about" exact element={<About />} />
|
||||
{/* <Route path="/contact" exact element={<Contact />} /> */}
|
||||
<Route path="/contact" exact element={<Contact />} />
|
||||
<Route path="/TermsOfService" exact element={<TermsOfService />} />
|
||||
</Routes>
|
||||
<Discord />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, { useState } from 'react';
|
||||
import Logo from '../assets/favicon.jpg';
|
||||
import { NavLink } from 'react-router-dom';
|
||||
import { NavLink, Link } from 'react-router-dom';
|
||||
import ReorderIcon from '@mui/icons-material/Reorder';
|
||||
import '../styles/Navbar.css'
|
||||
|
||||
@@ -14,7 +14,9 @@ function Navbar() {
|
||||
return (
|
||||
<div className='navbar'>
|
||||
<div className='leftSide' id={openLinks ? "open" : "close"}>
|
||||
<img src={Logo} />
|
||||
<a href='https://localhost:3000'>
|
||||
<img src={Logo} href="https://localhost:3000" />
|
||||
</a>
|
||||
<div className='hiddenLinks'>
|
||||
<NavLink to="/"> Home </NavLink>
|
||||
{/* <NavLink to="/applications"> Apps </NavLink> */}
|
||||
|
||||
Reference in New Issue
Block a user