forked from FlowwStar/FlowStar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
29 lines (27 loc) · 717 Bytes
/
Copy pathpage.tsx
File metadata and controls
29 lines (27 loc) · 717 Bytes
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
import type { Metadata } from 'next'
import { LandingHeader, Hero } from '@/components/landing/hero'
export const metadata: Metadata = {
title: 'FlowStar — Stream tokens by the second on Stellar',
description:
'Stream tokens by the second on Stellar. Create vesting schedules, payroll, and grants that unlock continuously — withdraw anytime, cancel anytime.',
}
import {
Features,
HowItWorks,
UseCases,
CTA,
Footer,
} from '@/components/landing/sections'
export default function LandingPage() {
return (
<div className="relative min-h-svh">
<LandingHeader />
<Hero />
<Features />
<HowItWorks />
<UseCases />
<CTA />
<Footer />
</div>
)
}