blob: 38fc4bb6b562e16827bf79624c940ee114eee208 (
plain)
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
|
import Link from "next/link"
import { Button } from "@/components/ui/button"
import Navbar from "@/components/Navbar"
import Footer from "@/components/Footer"
import { LogIn, ArrowRight } from "lucide-react"
export default function Home() {
return (
<div className="min-h-screen flex flex-col">
<Navbar />
<main className="flex-1 flex items-center justify-center">
<div className="container mx-auto px-4 py-20 text-center">
<div className="max-w-3xl mx-auto space-y-8">
<div className="space-y-4">
<h1 className="text-4xl md:text-6xl font-bold tracking-tight">
Build Something
<span className="text-primary"> Amazing</span>
</h1>
<p className="text-xl text-muted-foreground max-w-2xl mx-auto leading-relaxed">
A modern Next.js application with beautiful UI components,
secure authentication, and everything you need to build your next project.
</p>
</div>
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
<Button asChild size="lg" className="text-lg px-8 py-6">
<Link href="/login">
<LogIn className="mr-2 h-5 w-5" />
Get Started
</Link>
</Button>
<Button variant="outline" size="lg" className="text-lg px-8 py-6">
Learn More
<ArrowRight className="ml-2 h-5 w-5" />
</Button>
</div>
<div className="pt-8">
<p className="text-sm text-muted-foreground">
Built with Next.js, Tailwind CSS, Shadcn/UI, and MongoDB
</p>
</div>
</div>
</div>
</main>
<Footer />
</div>
)
}
|