diff --git a/src/app/page.tsx b/src/app/page.tsx index 9cd9b32..1b336fb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,7 +30,7 @@ const footerColumns = [ { label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "About", href: "/about" }, - { label: "Pricing", href: "/pricing" }, + { label: "Pricing", href: "#pricing" }, ], }, { @@ -185,7 +185,6 @@ export default function HomePage() { className="w-full" containerClassName="px-4 md:px-8" itemClassName="text-4xl md:text-5xl font-bold" - descriptionClassName="text-lg text-gray-300 mt-4" /> diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index e75c61d..eacc412 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -1,58 +1,58 @@ "use client"; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Zap, Star, Crown, HelpCircle } from 'lucide-react'; -import Link from 'next/link'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Zap, Star, Crown, Mail } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, +]; + +const footerColumns = [ + { + items: [ + { label: "Home", href: "/" }, + { label: "Products", href: "/products" }, + { label: "About", href: "/about" }, + { label: "Pricing", href: "#pricing" }, + ], + }, + { + items: [ + { label: "Build Guides", href: "#" }, + { label: "PC Reviews", href: "#" }, + { label: "Gaming News", href: "#" }, + { label: "Comparisons", href: "#" }, + ], + }, + { + items: [ + { label: "Support", href: "/contact" }, + { label: "FAQ", href: "#faq" }, + { label: "Contact", href: "/contact" }, + { label: "Careers", href: "#" }, + ], + }, + { + items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" }, + { label: "Legal", href: "#" }, + ], + }, +]; export default function ProductsPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Pricing", id: "pricing" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Home", href: "/" }, - { label: "Products", href: "/products" }, - { label: "About", href: "/about" }, - { label: "Pricing", href: "#pricing" }, - ], - }, - { - items: [ - { label: "Build Guides", href: "#" }, - { label: "PC Reviews", href: "#" }, - { label: "Gaming News", href: "#" }, - { label: "Comparisons", href: "#" }, - ], - }, - { - items: [ - { label: "Support", href: "/contact" }, - { label: "FAQ", href: "#faq" }, - { label: "Contact", href: "/contact" }, - { label: "Careers", href: "#" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" }, - { label: "Legal", href: "#" }, - ], - }, - ]; - return ( + {/* Navbar */} -
+ {/* Products Section */} +
-
+ {/* Pricing Section */} +
-
- -
-
-