diff --git a/src/app/upcoming/page.tsx b/src/app/upcoming/page.tsx index 3be0ce2..410d11a 100644 --- a/src/app/upcoming/page.tsx +++ b/src/app/upcoming/page.tsx @@ -3,25 +3,23 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import BlogCardThree from "@/components/sections/blog/BlogCardThree"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Sparkles } from "lucide-react"; export default function UpcomingPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Trending", id: "trending" }, - { name: "Upcoming", id: "upcoming" }, - { name: "Categories", id: "categories" }, - { name: "Community", id: "community" }, + { name: "Home", id: "/" }, + { name: "Trending", id: "/trending" }, + { name: "Upcoming", id: "/upcoming" }, + { name: "Community", id: "/community" }, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Features", href: "/features" }, { label: "Pricing", href: "/pricing" }, { label: "Categories", href: "/categories" }, @@ -29,8 +27,7 @@ export default function UpcomingPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Forum", href: "/forum" }, { label: "User Profiles", href: "/profiles" }, { label: "Reviews", href: "/reviews" }, @@ -38,8 +35,7 @@ export default function UpcomingPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, @@ -47,8 +43,7 @@ export default function UpcomingPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" }, @@ -79,18 +74,62 @@ export default function UpcomingPage() { /> -