From e7b99473cd70cd5a776f6896386a5631634a6bb2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 22:39:37 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 38 +++++++------------------------------- 1 file changed, 7 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 01fd5a2..a0f3c71 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,20 @@ import type { Metadata } from "next"; -import { Mulish, Inter } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones. Durable, stylish, and eco-friendly protection for your devices.", keywords: "laptop cases, mobile phone cases, protective cases, device protection, premium cases", openGraph: { - title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones. Where protection meets perfection.", siteName: "CaseForce", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/diary-pencil-tablet_1156-56.jpg", alt: "CaseForce Premium Cases"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CaseForce - Premium Laptop & Mobile Cases", description: "Premium protective cases for laptops and mobile phones.", images: ["http://img.b2bpic.net/free-photo/diary-pencil-tablet_1156-56.jpg"], - }, -}; + title: "CaseForce - Premium Protective Cases", description: "Hand-picked protective cases trusted by 50,000+ users worldwide. Premium quality meets affordability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}