diff --git a/src/app/globals.css b/src/app/globals.css
index 286fc98..742ce56 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -85,6 +85,11 @@ body {
background: var(--background);
color: var(--foreground);
transition: background-color 0.3s ease, color 0.3s ease;
+ overflow-x: hidden;
+}
+
+html {
+ overflow-x: hidden;
}
code,
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 06724a2..005d919 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,8 +1,8 @@
import type { Metadata } from "next";
import { Poppins, JetBrains_Mono } from "next/font/google";
import "./globals.css";
-import { ThemeProvider } from "@/components/ThemeProvider";
-import ThemeToggle from "@/components/ThemeProvider/ThemeToggle";
+import { ThemeProvider } from "@/components/theme-provider";
+import ThemeToggle from "@/components/theme-provider/theme-toggle";
const poppins = Poppins({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7b7ea52..7b7aa37 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,5 +1,27 @@
-import { redirect } from "next/navigation";
+import Header from "@/components/header";
+import Footer from "@/components/footer";
+import Hero from "@/components/hero";
+import FeaturedProducts from "@/components/featured-products";
+import Benefits from "@/components/benefits";
+import HowItWorks from "@/components/how-it-works";
+import Testimonials from "@/components/testimonials";
+import Stats from "@/components/stats";
+import CTA from "@/components/cta";
export default function Home() {
- redirect("/login");
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
}
diff --git a/src/components/benefits/index.tsx b/src/components/benefits/index.tsx
new file mode 100644
index 0000000..bffbe7b
--- /dev/null
+++ b/src/components/benefits/index.tsx
@@ -0,0 +1,85 @@
+"use client";
+
+const benefits = [
+ {
+ icon: "π°",
+ title: "Significant Cost Savings",
+ description:
+ "Save $150-$200 per order on shipping costs. That adds up to $2,000-$2,400 in savings per year for regular customers.",
+ },
+ {
+ icon: "π¦",
+ title: "Free Local Pickup",
+ description:
+ "Convenient pickup at your schedule. No waiting for shipments or tracking packages.",
+ },
+ {
+ icon: "β‘",
+ title: "Lightning Fast Turnaround",
+ description:
+ "1-2 day fulfillment vs. week-long shipping waits. Get your supplies when you need them.",
+ },
+ {
+ icon: "π±",
+ title: "Premium Quality",
+ description:
+ "USA-grown soy wax from trusted brands like Golden Brands. We only stock the best.",
+ },
+ {
+ icon: "π€",
+ title: "Reliable & Dependable",
+ description:
+ "We show up when we say we will. Count on us for consistent service and availability.",
+ },
+ {
+ icon: "ποΈ",
+ title: "Support Local Business",
+ description:
+ "Keep your money in Colorado and support a local, family-owned supplier.",
+ },
+];
+
+export default function Benefits() {
+ return (
+
+
+
+
+ Why Choose Craft & Harvest?
+
+
+ More than just suppliesβwe're your partner in candle making
+ success
+
+
+ );
+}
diff --git a/src/components/testimonials/index.tsx b/src/components/testimonials/index.tsx
new file mode 100644
index 0000000..3cb4b7f
--- /dev/null
+++ b/src/components/testimonials/index.tsx
@@ -0,0 +1,85 @@
+"use client";
+
+const testimonials = [
+ {
+ quote:
+ "You definitely helped make my business a success over the years, we appreciate you! Thanks so much.",
+ author: "Denver Candle Maker",
+ savings: "$2,000-$2,400/year in shipping savings",
+ },
+ {
+ quote:
+ "What would we do without a local supplier! You've helped us grow and saved us a ton of money.",
+ author: "Colorado Artisan",
+ savings: "$150-$200 per order saved",
+ },
+ {
+ quote:
+ "Thank you for saving us money on our shipping costs! We also really like working with a local supplier.",
+ author: "Local Business Owner",
+ savings: "Hundreds saved annually",
+ },
+];
+
+export default function Testimonials() {
+ return (
+
+