diff --git a/src/app/gaming-setup/page.tsx b/src/app/gaming-setup/page.tsx
index 58f1a51..7574b9c 100644
--- a/src/app/gaming-setup/page.tsx
+++ b/src/app/gaming-setup/page.tsx
@@ -1,58 +1,45 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroCentered from "@/components/sections/hero/HeroCentered";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
-import Link from "next/link";
-import {
- Zap,
- Gauge,
- Lightbulb,
- Gamepad2,
- Trophy,
- Broadcast,
- Users,
-} from "lucide-react";
+import { Zap, Gauge, Lightbulb, Monitor, Headphones, Keyboard } from "lucide-react";
export default function GamingSetupPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Gaming Setup", id: "/gaming-setup" },
- { name: "Pricing", id: "pricing" },
- { name: "Tournaments", id: "tournaments" },
- { name: "Contact", id: "contact" },
+ { name: "Pricing", id: "/pricing" },
+ { name: "Tournaments", id: "/tournaments" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Gaming Experience",
- items: [
+ title: "Gaming Experience", items: [
{ label: "Gaming Setup", href: "/gaming-setup" },
- { label: "Pricing", href: "#pricing" },
+ { label: "Pricing", href: "/pricing" },
{ label: "Book Session", href: "https://wa.me/917022946056" },
],
},
{
- title: "Community",
- items: [
- { label: "Tournaments", href: "#tournaments" },
+ title: "Community", items: [
+ { label: "Tournaments", href: "/tournaments" },
{ label: "Discord Server", href: "https://discord.gg" },
{ label: "Instagram", href: "https://instagram.com" },
],
},
{
- title: "Contact",
- items: [
+ title: "Contact", items: [
{ label: "Phone: +91 70229 46056", href: "tel:+917022946056" },
{ label: "WhatsApp", href: "https://wa.me/917022946056" },
{ label: "Email Support", href: "mailto:info@m80esports.com" },
- {
- label: "Get Directions",
- href: "https://maps.google.com/?q=17/A+3rd+Floor+Samruthi+Nest+New+BEL+Road+Bangalore",
- },
+ { label: "Get Directions", href: "https://maps.google.com/?q=17/A+3rd+Floor+Samruthi+Nest+New+BEL+Road+Bangalore" },
],
},
];
@@ -74,40 +61,41 @@ export default function GamingSetupPage() {