diff --git a/src/app/page.tsx b/src/app/page.tsx index 690e646..d2581bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,16 +1,16 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; -import { Navbar } from "@/components/Navbar/Navbar"; -import { Footer } from "@/components/Footer/Footer"; -import { Hero } from "@/components/Hero/Hero"; -import { Feature } from "@/components/Feature/Feature"; -import { Product } from "@/components/Product/Product"; -import { Testimonial } from "@/components/Testimonial/Testimonial"; -import { SocialProof } from "@/components/SocialProof/SocialProof"; -import { CTA } from "@/components/CTA/CTA"; -import { Blog } from "@/components/Blog/Blog"; -import { Leaf, Sparkles, HeartHandshake, Blender, Facebook, Instagram, Twitter } from "lucide-react"; +import Navbar from "@/components/Navbar/Navbar"; +import Footer from "@/components/Footer/Footer"; +import Hero from "@/components/Hero/Hero"; +import Feature from "@/components/Feature/Feature"; +import Product from "@/components/Product/Product"; +import Testimonial from "@/components/Testimonial/Testimonial"; +import SocialProof from "@/components/SocialProof/SocialProof"; +import CTA from "@/components/CTA/CTA"; +import Blog from "@/components/Blog/Blog"; +import { Leaf, Sparkles, HeartHandshake, Blend, Facebook, Instagram, Twitter } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -63,7 +63,7 @@ export default function HomePage() { { icon: Leaf, title: "Fresh & Natural", description: "Only the highest quality, ripe fruits and organic greens." }, { icon: Sparkles, title: "Vibrant Flavors", description: "Unforgettable taste crafted for your palate." }, { icon: HeartHandshake, title: "Community Focused", description: "Supporting local farms and healthy lifestyles." }, - { icon: Blender, title: "Customizable Creations", description: "Your smoothie, your way – blend it perfectly." }, + { icon: Blend, title: "Customizable Creations", description: "Your smoothie, your way – blend it perfectly." }, ]} />