diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 1a26efa..20e35ec 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -2,45 +2,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-import ContactText from "@/components/sections/contact/ContactText";
-import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
export default function AboutPage() {
const navItems = [
{ name: "Featured", id: "featured" },
{ name: "Products", id: "products" },
- { name: "Specs", id: "specs" },
+ { name: "Daily Offers", id: "daily-offers" },
{ name: "Pricing", id: "pricing" },
];
- const footerColumns = [
- {
- 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: "#" },
- { label: "Our Team", href: "#" },
- { label: "Careers", href: "#" },
- { label: "Blog", href: "#" },
- ],
- },
- {
- title: "Support", items: [
- { label: "Contact Us", href: "#" },
- { label: "FAQ", href: "#" },
- { label: "Warranty", href: "#" },
- { label: "Returns", href: "#" },
- ],
- },
- ];
-
return (
-
-
-
-
-
-
+
-
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8d2418c..85c665b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1434 +1,18 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans",
- subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
+import "./styles/globals.css";
+import "./styles/variables.css";
export const metadata: Metadata = {
- title: "GamerPC - High-Performance Gaming Computers & Custom Builds",
- description: "Buy premium gaming PCs with RTX 4090, RTX 4080, and RTX 4070. Custom builds, esports systems, and streaming rigs. Fast shipping & lifetime support.",
- keywords: "gaming PC, gaming laptop, RTX 4090, gaming desktop, custom PC build, esports PC, gaming computer",
- metadataBase: new URL("https://gamerpc.com"),
- alternates: {
- canonical: "https://gamerpc.com",
- },
- openGraph: {
- title: "GamerPC - Ultimate Gaming PC Performance",
- description: "Experience ultimate gaming with high-performance RTX gaming PCs. Custom builds, fast shipping, and expert support.",
- url: "https://gamerpc.com",
- siteName: "GamerPC",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/close-up-woman-repairing-computer-chips_23-2150880936.jpg",
- alt: "GamerPC - High-end gaming computer",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "GamerPC - Premium Gaming Computers",
- description: "Unleash your gaming potential with our top-tier gaming PCs. RTX 4090 performance, custom builds, expert support.",
- images: ["http://img.b2bpic.net/free-photo/close-up-woman-repairing-computer-chips_23-2150880936.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "GamerPC - Premium Gaming Systems", description: "Experience ultimate gaming performance with our premium-built gaming PCs. Engineered for esports, streaming, and immersive gaming."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
-