@@ -2,32 +2,37 @@ import Image from "next/image";
22import Link from "next/link" ;
33import { Download } from "lucide-react" ;
44import { Button } from "@/components/ui/button" ;
5- import { useTranslation } from "@/utils/translation"
5+ import { useTranslation } from "@/utils/translation" ;
6+ import NobarBanner from "@/components/NobarBanner" ;
67
78export default function Home ( ) {
89 const { t } = useTranslation ( ) ;
910 return (
10- < main className = "py-12 md:py-24 lg:py-32 xl:py-48" >
11- < div className = "mx-auto container px-4 md:px-6" >
12- < div className = "flex flex-col items-center space-y-8 text-center" >
13- < h1 className = "text-3xl font-bold sm:text-4xl md:text-5xl lg:text-6xl/none" >
14- { t ( 'home.title' ) }
15- </ h1 >
16- < p className = "mx-auto max-w-[770px] text-muted-foreground md:text-xl" >
17- { t ( 'home.description' ) }
18- </ p >
19- < div className = "flex gap-4" >
20- < Button asChild >
21- < Link href = "/download" >
22- < Download className = "me-2 h-4 w-4" /> { t ( 'home.downloadButton' ) }
23- </ Link >
24- </ Button >
25- < Button variant = "outline" asChild >
26- < Link href = "/features" > { t ( 'home.learnMoreButton' ) } </ Link >
27- </ Button >
11+ < >
12+ < main className = "py-12 md:py-24 lg:py-32 xl:py-48" >
13+ < div className = "mx-auto container px-4 md:px-6" >
14+ < div className = "flex flex-col items-center space-y-8 text-center" >
15+ < h1 className = "text-3xl font-bold sm:text-4xl md:text-5xl lg:text-6xl/none" >
16+ { t ( "home.title" ) }
17+ </ h1 >
18+ < p className = "mx-auto max-w-[770px] text-muted-foreground md:text-xl" >
19+ { t ( "home.description" ) }
20+ </ p >
21+ < div className = "flex gap-4" >
22+ < Button asChild >
23+ < Link href = "/download" >
24+ < Download className = "me-2 h-4 w-4" /> { " " }
25+ { t ( "home.downloadButton" ) }
26+ </ Link >
27+ </ Button >
28+ < Button variant = "outline" asChild >
29+ < Link href = "/features" > { t ( "home.learnMoreButton" ) } </ Link >
30+ </ Button >
31+ </ div >
2832 </ div >
2933 </ div >
30- </ div >
31- </ main >
34+ </ main >
35+ < NobarBanner />
36+ </ >
3237 ) ;
3338}
0 commit comments