diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..2059fc6 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,55 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Badge } from "@/components/badge"; +import { AlertTriangle, ShieldCheck, Camera } from "lucide-react"; +import { useLanguage } from "@/context/language-provider"; +import Image from "next/image"; + +export function Hero() { + const { t, language } = useLanguage(); + + return ( +
+ +
+
+ + {t("hero_badge")} + + + {t("hero_title_1")} {t("hero_title_2")} + + + {t("hero_sub")} + +
+ + +
+
+
+ Emergency Response +
+
+
+ + {/* Background Decoration */} +
+
+
+
+ ); +}