aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.tsx
blob: ade6baa27ca13430628efb277c61c878518eeb27 (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
import Link from "next/link"
import { Button } from "@/components/ui/button"
import { LogIn, ArrowRight } from "lucide-react"

export default function Home() {
  return (
    <div 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>
    </div>
  )
}