Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-03-23 05:28:30 +00:00

View File

@@ -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." },
]}
/>
</div>