Skip to content
Open
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
3 changes: 1 addition & 2 deletions server/routes/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { defineApp } from 'fresh/server.ts';
export default defineApp((_req, ctx) => {
// OpenGraph image URL must be absolute.
const logoUrl = new URL('/harmony-logo.svg', ctx.url);
const isLandingPage = ctx.url.pathname === '/';

return (
<html lang='en'>
Expand All @@ -24,7 +23,7 @@ export default defineApp((_req, ctx) => {
<link rel='manifest' href='/site.webmanifest' />
</head>
<body>
{!isLandingPage && <NavigationBar />}
<NavigationBar />
<ctx.Component />
<Footer />
</body>
Expand Down
Loading