-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpage.tsx
More file actions
53 lines (48 loc) · 1.87 KB
/
Copy pathpage.tsx
File metadata and controls
53 lines (48 loc) · 1.87 KB
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
49
50
51
52
53
import Link from 'next/link';
import {
FeaturedProjects,
StatsStrip,
TopBuilders,
WantToBuild,
} from '@/components/landing';
import { SiteFooter } from '@/components/layout/site-footer';
import { SiteHeader } from '@/components/layout/site-header';
import { HeroBackground } from '@/components/marketing/hero-background';
import { Section } from '@/components/marketing/section';
import { Button } from '@/components/ui/button';
export default function Home() {
return (
<>
<SiteHeader />
<HeroBackground fieldHeight={640}>
<Section className='py-24 text-center lg:py-32'>
<div className='inline-flex items-center rounded-full border border-white/10 bg-white/5 p-1 text-body-xs text-white/70'>
<span className='rounded-full bg-white/10 px-3 py-1 font-medium text-white'>
Boundless Builders
</span>
</div>
<h1 className='mt-6 text-display-sm text-foreground lg:text-display-lg'>
Discover the builders shipping on{' '}
<span className='text-primary-500'>Stellar</span>
</h1>
<p className='mx-auto mt-6 max-w-2xl text-body-lg text-muted-foreground'>
Explore the projects, teams, and creators building across the
Boundless ecosystem. This app showcases the work. Creating and
uploading happens in the main Boundless app.
</p>
<div className='mt-10 flex flex-wrap items-center justify-center gap-4'>
<Button size='large'>Explore builders</Button>
<Button intent='secondary' appearance='outline' size='large' asChild>
<Link href='/projects'>View projects</Link>
</Button>
</div>
</Section>
</HeroBackground>
<StatsStrip />
<TopBuilders />
<FeaturedProjects />
<WantToBuild />
<SiteFooter />
</>
);
}