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 (
-
-