"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Sparkles } from "lucide-react"; export default function HomePage() { const navItems = [ { name: "Features", id: "features" }, { name: "Pricing", id: "/pricing" }, { name: "Solutions", id: "solutions" }, { name: "Resources", id: "resources" }, { name: "Community", id: "community" }, ]; const footerColumns = [ { title: "Product", items: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "/pricing" }, { label: "Templates", href: "#templates" }, { label: "Integrations", href: "#integrations" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, { label: "Contact", href: "/contact" }, ], }, { title: "Resources", items: [ { label: "Documentation", href: "/docs" }, { label: "Community", href: "/community" }, { label: "Status", href: "https://status.webild.com" }, { label: "Support", href: "/support" }, ], }, ]; return (
); }