diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 942778e..edcd6e8 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -3,48 +3,43 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
-import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
+import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
+import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
-import { Zap, Gauge, Lightbulb, Gamepad2, Trophy, Broadcast, Users } from "lucide-react";
+import { Users, Gamepad2, Trophy, Zap } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Gaming Setup", id: "gaming-setup" },
- { name: "Pricing", id: "pricing" },
- { name: "Tournaments", id: "tournaments" },
- { name: "Contact", id: "contact" },
+ { name: "Gaming Setup", id: "/gaming-setup" },
+ { 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: "Book Session", href: "https://wa.me/917022946056" },
],
},
{
- title: "Community",
- items: [
+ 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" },
],
},
];
@@ -66,65 +61,61 @@ export default function AboutPage() {