File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { useAuth } from "@/components/auth-context";
1515import { HomeFooter } from "@/components/layouts/home-footer" ;
1616import { HomeHeader } from "@/components/layouts/home-header" ;
1717import { useTheme } from "@/components/theme-provider" ;
18+ import { Badge } from "@/components/ui/badge" ;
1819import { Button } from "@/components/ui/button" ;
1920import { Card , CardHeader , CardTitle } from "@/components/ui/card" ;
2021import { VideoDialog } from "@/components/video-dialog" ;
@@ -83,11 +84,19 @@ export function HomePage() {
8384 { /* Hero Section */ }
8485 < section className = "mx-auto relative py-20 md:py-32" >
8586 < div className = "container mx-auto px-6" >
86- < img
87- src = "/logo.svg"
88- alt = "dafthunk"
89- className = "h-12 sm:h-24 dark:invert mb-6 sm:mb-8 mx-auto"
90- />
87+ < div className = "flex flex-col gap-6 items-center" >
88+ < Badge
89+ variant = "secondary"
90+ className = "bg-pink-300 text-black border border-pink-600 hover:bg-pink-300 dark:bg-pink-700 dark:border-pink-400 dark:text-pink-300 font-mono"
91+ >
92+ ALPHA Preview
93+ </ Badge >
94+ < img
95+ src = "/logo.svg"
96+ alt = "dafthunk"
97+ className = "h-12 sm:h-24 dark:invert mb-4"
98+ />
99+ </ div >
91100 < div className = "max-w-prose mx-auto" >
92101 < div className = "text-3xl sm:text-4xl md:text-5xl font-bold tracking-tight mb-3 sm:mb-5 relative text-center" >
93102 < h1 className = "relative" >
You can’t perform that action at this time.
0 commit comments