forked from solana-foundation/mosaic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhero.tsx
More file actions
72 lines (68 loc) · 2.98 KB
/
hero.tsx
File metadata and controls
72 lines (68 loc) · 2.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"use client"
import { Button } from "@/components/ui/button"
import { Coins, Shield, Zap } from "lucide-react"
import { useRouter } from "next/navigation"
export function Hero() {
const router = useRouter()
return (
<section className="relative overflow-hidden bg-background py-24 sm:py-32">
<div className="container relative z-10 mx-auto px-4 sm:px-6 lg:px-8">
<div className="mx-auto max-w-4xl text-center">
<h1 className="text-4xl font-bold tracking-tight text-foreground sm:text-6xl">
Tokenization Engine
</h1>
<p className="mt-6 text-lg leading-8 text-muted-foreground">
Create, manage, and deploy stablecoins and tokenized assets on Solana with
enterprise-grade security and compliance features.
</p>
<div className="mt-10 flex items-center justify-center gap-x-6">
<Button size="lg" onClick={() => router.push("/dashboard")}>
Tokenize!
</Button>
<Button variant="outline" size="lg">
Learn More
</Button>
</div>
</div>
<div className="mt-16 grid grid-cols-1 gap-8 sm:grid-cols-3">
<div className="text-center">
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-primary/10">
<Coins className="h-6 w-6 text-primary" />
</div>
<h3 className="mt-4 text-lg font-semibold text-foreground">
Stablecoin Creation
</h3>
<p className="mt-2 text-sm text-muted-foreground">
Deploy regulatory-compliant stablecoins with built-in extensions for
transfer restrictions and metadata management.
</p>
</div>
<div className="text-center">
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-primary/10">
<Shield className="h-6 w-6 text-primary" />
</div>
<h3 className="mt-4 text-lg font-semibold text-foreground">
Security & Compliance
</h3>
<p className="mt-2 text-sm text-muted-foreground">
Advanced allowlist and blocklist management with real-time monitoring
and audit trails for regulatory compliance.
</p>
</div>
<div className="text-center">
<div className="mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-primary/10">
<Zap className="h-6 w-6 text-primary" />
</div>
<h3 className="mt-4 text-lg font-semibold text-foreground">
Lightning Fast
</h3>
<p className="mt-2 text-sm text-muted-foreground">
Built on Solana for sub-second finality and minimal transaction costs,
enabling high-frequency trading and real-time settlements.
</p>
</div>
</div>
</div>
</section>
)
}