-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.tsx
48 lines (38 loc) · 1.6 KB
/
page.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import './styles/app.css';
import { getFrameMetadata } from 'frog/next';
import type { Metadata } from 'next';
import HomeSection from './sections/HomeSection';
import TypographySection from './sections/TypographySection';
import WhySection from './sections/WhySection';
import MintStepsGridSection from './sections/MintStepsGridSection';
import VideoSection from './sections/VideoSection';
import FooterSection from './sections/FooterSection';
import { APP_URL } from './utils/shared';
export async function generateMetadata(): Promise<Metadata> {
const url = APP_URL;
const frameMetadata = await getFrameMetadata(`${url}/api`);
return {
other: frameMetadata,
};
}
export default function Home({ searchParams }: { searchParams: { ref_code?: string } }) {
const referralCode = searchParams.ref_code;
const registrationUrl = `https://onchain-summer.devfolio.co${referralCode ? '?ref_code=' + referralCode : ''}`;
const projectsUrl = `https://onchain-summer.devfolio.co/projects${referralCode ? '?ref_code=' + referralCode : ''}`;
return (
<main className="flex flex-col items-center min-h-screen w-screen bg-grid bg-primary">
{/* Let's get jesse bald */}
<HomeSection projectsUrl={projectsUrl} />
{/* Animated Typography */}
<TypographySection />
{/* Because that's what he said... */}
<WhySection projectsUrl={projectsUrl} />
{/* Mint your SupaBald Jesse NFT */}
<MintStepsGridSection />
{/* We're not making this up. Hear it from Jesse himself! */}
<VideoSection />
{/* Footer & Animated */}
<FooterSection />
</main>
);
}