"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import SplitAbout from '@/components/sections/about/SplitAbout'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Award, Users, Sparkles } from 'lucide-react'; export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Portfolio", id: "/portfolio" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]; const footerColumns = [ { title: "Navigatsiya", items: [ { label: "Bosh sahifa", href: "/" }, { label: "Portfolio", href: "/portfolio" } ] }, { title: "Ijtimoiy tarmoqlar", items: [ { label: "Telegram", href: "https://t.me/monstyle" }, { label: "Instagram", href: "https://instagram.com/monstyle" }, { label: "Email", href: "mailto:info@monstyle.uz" } ] } ]; return (
); }