This commit is contained in:
2025-03-26 01:24:52 -04:00
parent 79c7795acb
commit 06cdbe12f2
11 changed files with 32 additions and 27 deletions

View File

@@ -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 />

View File

@@ -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> */}