diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e4d90fc..82dbdfa 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,43 +1,20 @@
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"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "GearFlow - Premium Sports & Outdoor Gear", description: "Shop premium athletic gear, outdoor equipment, and lifestyle essentials. Trusted by athletes worldwide with 30-day returns and fast shipping.", keywords: "sports gear, outdoor equipment, athletic shoes, performance gear, sports equipment store", openGraph: {
- title: "GearFlow - Premium Sports & Outdoor Gear", description: "Discover premium gear engineered for performance. Shop the latest in sports equipment, outdoor gear, and lifestyle essentials.", siteName: "GearFlow", images: [
- {
- url: "http://img.b2bpic.net/free-photo/top-view-travel-kit-elements-table_23-2148315718.jpg", alt: "GearFlow Premium Gear Collection"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "GearFlow - Premium Sports & Outdoor Gear", description: "Premium athletic and outdoor gear trusted by athletes worldwide."},
-};
+ title: "GearFlow - Premium Sports & Outdoor Gear", description: "Discover premium sports equipment and outdoor gear trusted by 500K+ athletes. Shop the latest in performance gear, outdoor equipment, and lifestyle essentials."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-