diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 387a8fb..0e7ffad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Digital Zameen | Premium Digital Assets & Templates", description: "Discover thousands of templates, AI tools, and business resources for freelancers, creators, and entrepreneurs. Instant download, transparent pricing, and professional quality.", keywords: "digital templates, AI tools, marketplace, business assets, templates, freelance resources, creator tools", metadataBase: new URL("https://digitalzameen.com"), - alternates: { - canonical: "https://digitalzameen.com"}, - openGraph: { - title: "Digital Zameen | Premium Digital Assets & Templates", description: "Premium templates, AI tools, and business resources built by professionals. Instant access, commercial use, lifetime license.", url: "https://digitalzameen.com", siteName: "Digital Zameen", type: "website"}, - twitter: { - card: "summary_large_image", title: "Digital Zameen | Premium Digital Assets & Templates", description: "Thousands of templates and AI tools for creators and entrepreneurs. Download instantly."}, -}; + title: "Digital Zameen - Premium Digital Assets & Tools", description: "Marketplace for templates, AI tools, and business resources. Instant access, affordable pricing, professional quality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -