diff --git a/web/components/nav-bar.tsx b/web/components/nav-bar.tsx index 696e9943..2b8e4082 100644 --- a/web/components/nav-bar.tsx +++ b/web/components/nav-bar.tsx @@ -9,10 +9,11 @@ import { ProfileMenu } from './profile-menu' export function NavBar(props: { darkBackground?: boolean + wide?: boolean className?: string children?: any }) { - const { darkBackground, className, children } = props + const { darkBackground, wide, className, children } = props const user = useUser() @@ -23,22 +24,29 @@ export function NavBar(props: { return ( ) diff --git a/web/components/page.tsx b/web/components/page.tsx index cc835531..1bc62289 100644 --- a/web/components/page.tsx +++ b/web/components/page.tsx @@ -6,10 +6,10 @@ export function Page(props: { wide?: boolean; children?: any }) { return (
- +
diff --git a/web/pages/landing-page.tsx b/web/pages/landing-page.tsx index 878f0324..f983a6ac 100644 --- a/web/pages/landing-page.tsx +++ b/web/pages/landing-page.tsx @@ -32,7 +32,7 @@ const scrollToAbout = () => { function Hero() { return (
- +
-
+