diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 692a2e5..1a26efa 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -2,21 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
-import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
-import {
- Zap,
- Thermometer,
- Cpu,
- Palette,
- ShieldCheck,
- Truck,
- Activity,
- BarChart3,
-} from "lucide-react";
export default function AboutPage() {
const navItems = [
@@ -28,27 +16,24 @@ export default function AboutPage() {
const footerColumns = [
{
- title: "Products",
- items: [
- { label: "Gaming PCs", href: "/" },
- { label: "Gaming Laptops", href: "/" },
- { label: "Custom Builds", href: "/" },
- { label: "Peripherals", href: "/" },
+ title: "Products", items: [
+ { label: "Gaming PCs", href: "/products" },
+ { label: "Gaming Laptops", href: "/products" },
+ { label: "Custom Builds", href: "/products" },
+ { label: "Peripherals", href: "/products" },
],
},
{
- title: "Company",
- items: [
- { label: "About Us", href: "/about" },
- { label: "Our Team", href: "/about" },
+ title: "Company", items: [
+ { label: "About Us", href: "#" },
+ { label: "Our Team", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" },
],
},
{
- title: "Support",
- items: [
- { label: "Contact Us", href: "/contact" },
+ title: "Support", items: [
+ { label: "Contact Us", href: "#" },
{ label: "FAQ", href: "#" },
{ label: "Warranty", href: "#" },
{ label: "Returns", href: "#" },
@@ -63,7 +48,7 @@ export default function AboutPage() {
borderRadius="rounded"
contentWidth="small"
sizing="largeSizeMediumTitles"
- background="fluid"
+ background="circleGradient"
cardStyle="gradient-radial"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
@@ -73,117 +58,20 @@ export default function AboutPage() {