Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-08 19:34:27 +00:00

View File

@@ -1,19 +1,25 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { NavbarStyleApple } from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import BlogCardOne from "@/components/sections/blog/BlogCardOne";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Star, Sparkles, GraduationCap, ShoppingBag } from 'lucide-react';
import Link from 'next/link';
export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
const navItems = [
{ name: "Home", id: "#hero" },
{ name: "Services", id: "#features" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Lookbook", id: "#gallery" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" }
];
return (
<ThemeProvider
@@ -128,7 +134,7 @@ export default function Page() {
logoText="Funmich Couture"
columns={[
{ title: "Studio", items: [{ label: "33 Nembe Road, Rumuibekwe, Port Harcourt", href: "#" }, { label: "0805 715 1730", href: "tel:08057151730" }] },
{ title: "Links", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] }
{ title: "Links", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#features" }, { label: "Contact", href: "#contact" }] }
]}
/>
</div>