Skip to content
This repository was archived by the owner on Sep 13, 2025. It is now read-only.
Merged
Binary file added website/public/images/celonis_entry.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions website/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Index from "./pages/Index";
import NotFound from "./pages/NotFound";
import Guidebook from "./pages/Guidebook";

const queryClient = new QueryClient();

Expand All @@ -17,6 +18,7 @@ const App = () => (
<Routes>
<Route path="/" element={<Index />} />
<Route path="*" element={<NotFound />} />
<Route path="/guidebook" element={<Guidebook />} />
</Routes>
</BrowserRouter>
</TooltipProvider>
Expand Down
12 changes: 11 additions & 1 deletion website/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const Navbar = () => {
{ id: "speakers", label: "Speakers", url: "#speakers" },
{ id: "schedule", label: "Schedule", url: "#schedule" },
{ id: "about-us", label: "Organisers", url: "#about-us" },
{ id: "guidebook", label: "Guidebook", url: "/guidebook" },
{
id: "github",
label: "GitHub",
Expand Down Expand Up @@ -112,6 +113,12 @@ const Navbar = () => {
>
Organisers
</a>
<a
href="/guidebook"
className="text-springText/80 hover:text-springBlue transition-colors flex items-center gap-2"
>
Guidebook
</a>
<a
href="https://github.com/CDTM/cdtm-hacks"
target="_blank"
Expand Down Expand Up @@ -150,7 +157,10 @@ const Navbar = () => {
/>

{/* Applications Closed Dialog */}
<ApplicationsClosedDialog isOpen={isDialogOpen} onOpenChange={setIsDialogOpen} />
<ApplicationsClosedDialog
isOpen={isDialogOpen}
onOpenChange={setIsDialogOpen}
/>
</header>
);
};
Expand Down
Loading