We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dc7a39 commit c36df43Copy full SHA for c36df43
1 file changed
app/(landing)/waitlist/page.tsx app/waitlist/page.tsxapp/(landing)/waitlist/page.tsx renamed to app/waitlist/page.tsx
@@ -3,12 +3,15 @@ import { generatePageMetadata } from '@/lib/metadata';
3
import WaitlistForm from '@/components/waitlist/WaitlistForm';
4
import BeamBackground from '@/components/landing-page/BeamBackground';
5
import Image from 'next/image';
6
+import { Navbar } from '@/components/landing-page';
7
8
export const metadata: Metadata = generatePageMetadata('waitlist');
9
10
export default function WaitlistPage() {
11
return (
- <div className=''>
12
+ <div className='bg-background relative flex min-h-screen flex-col pt-5 md:pt-11'>
13
+ <Navbar />
14
+
15
<Image
16
src='/waitlist-bg.svg'
17
alt='waitlist-bg'
0 commit comments