"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; import Link from "next/link"; import { Zap, Target, TrendingUp, Award } from "lucide-react"; export default function ChallengePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Start Here", id: "/start-here" }, { name: "Challenge", id: "/7-day-challenge" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { title: "Platform", items: [ { label: "Start Here", href: "/start-here" }, { label: "7-Day Challenge", href: "/7-day-challenge" }, { label: "Blog", href: "/blog" }, { label: "Resources", href: "/resources" }, ], }, { title: "Community", items: [ { label: "Discord", href: "https://discord.com" }, { label: "Twitter", href: "https://twitter.com" }, { label: "YouTube", href: "https://youtube.com" }, { label: "Newsletter", href: "/7-day-challenge" }, ], }, { title: "Company", items: [ { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, ], }, ]; return (
); }