"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import TextAbout from "@/components/sections/about/TextAbout"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import Link from "next/link"; import { Shield, Briefcase, Award, MessageCircle } from "lucide-react"; const navItems = [ { name: "Главная", id: "/" }, { name: "Об адвокате", id: "/about" }, { name: "Практика", id: "/practice" }, { name: "Публикации", id: "/publications" }, { name: "FAQ", id: "/faq" }, { name: "Контакты", id: "/contacts" }, ]; export default function HomePage() { return ( {/* Navbar */} {/* Hero Section */}
{/* Official Info Section */}
{/* About Section */}
{/* Practice Section */}
{/* Principles Section */}
{/* Contact CTA Section */}
{/* Footer */}
); }