From e87cdd23aa1a985ca2e9d828328f912e29d14308 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:53:21 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 58 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..887340d --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,58 @@ +"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 { motion } from "framer-motion"; +import Image from "next/image"; + +export function Hero() { + return ( +
+ {/* Bright Background Image with Light Overlay */} +
+ Bright Office Background +
+
+ + +
+ + + Web Design & Development Agency + + + Professional Websites That Grow Your Business + + + We build high-converting, modern websites for startups, restaurants, and local businesses. Get a free demo before you pay a single cent. + +
+ + +
+
+
+
+ + {/* Subtle Soft Glows */} +
+
+
+ ); +}