diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..41bc60d --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,84 @@ +import { Hero } from "@/components/hero"; +import { Services } from "@/components/services"; +import { Pricing } from "@/components/pricing"; +import { ContactSection } from "@/components/contact-section"; +import { Footer } from "@/components/footer"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { CheckCircle2 } from "lucide-react"; +import Image from "next/image"; + +export default function Home() { + return ( +
+ + + {/* Why Choose Us Section with Bright Background */} +
+
+ Bright Workspace +
+ + +
+
+ Why Choose Websitter? + + We don't just build websites; we build growth engines for your business. Our process is designed for speed, quality, and results. + +
+ {[ + "Modern & mobile-friendly designs", + "SEO-optimized for local search", + "Fast delivery (usually within 7 days)", + "Affordable pricing for small businesses", + "Free demo before you commit", + "24/7 Dedicated Support", + ].map((item, i) => ( +
+
+ +
+ {item} +
+ ))} +
+
+ +
+
+
+ Analytics Preview +
+
+
+
+
+

Free Demo

+

We build your site first. You pay only if you love it.

+
+
+
+
+
+ +
+ + + + +
+ ); +}