diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d1fd9bc..ee58050 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1429 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Divide by 2 - Innovative Tech & Self-Care Products", - description: "Discover affordable, innovative tech and self-care products that simplify life. Experience Divide by 2 - making everything simpler, smarter, easier.", - keywords: "tech products, self-care, innovation, affordable, lifestyle, gadgets, wellness", - openGraph: { - title: "Divide by 2 - Simplify Everything", - description: "Innovative, affordable tech and self-care products for modern living.", - siteName: "Divide by 2", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Divide by 2 - Innovative Products", - description: "Simplify your life with innovative tech and self-care solutions.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Divide by 2", description: "Innovative, affordable tech and self-care products that make life simpler, smarter, and easier."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -