Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions ginos-gelato/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions ginos-gelato/client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import AboutUs from './pages/AboutUs';
import OurFlavors from './pages/OurFlavors';
import Locations from './pages/Locations';
import Catering from './pages/Catering';
import ManagementDashboard from './pages/ManagementDashboard';
import Header from './components/Layout/Header';
import Footer from './components/Layout/Footer';
import { CartProvider } from './contexts/CartContext';
Expand All @@ -28,6 +29,7 @@ const App: React.FC = () => {
<Route path="/flavors" element={<OurFlavors />} />
<Route path="/locations" element={<Locations />} />
<Route path="/catering" element={<Catering />} />
<Route path="/management" element={<ManagementDashboard />} />
</Routes>
</main>
<Footer />
Expand Down
9 changes: 9 additions & 0 deletions ginos-gelato/client/src/components/Layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ const Header: React.FC = () => {
<span className="absolute bottom-0 left-0 w-0 h-0.5 bg-yellow-200 group-hover:w-full transition-all duration-300"></span>
</Link>
</li>
<li>
<Link
to="/management"
className="text-white font-medium hover:text-yellow-100 transition-all duration-300 hover:scale-110 relative group"
>
📊 Management
<span className="absolute bottom-0 left-0 w-0 h-0.5 bg-yellow-200 group-hover:w-full transition-all duration-300"></span>
</Link>
</li>
</ul>
</nav>
</div>
Expand Down
Loading