From ff28eb0fff9ebfde5f30ad37ccc0d00926b57525 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:36:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 7 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e5f3388..c0f1fab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -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: "Digital Zameen | Premium Templates, AI Tools & Business Assets", description: "Instant access to 3,000+ professional templates, AI tools, and business resources for freelancers, creators, and entrepreneurs. Premium quality, zero friction.", keywords: "templates, AI tools, digital assets, business resources, freelancer tools, creator templates, startup resources", metadataBase: new URL("https://www.digitalzameen.com"), - alternates: { - canonical: "https://www.digitalzameen.com"}, - openGraph: { - title: "Digital Zameen | Premium Digital Assets, Instant Access", description: "Discover thousands of professional templates, AI tools, and business resources. Download instantly and start building today.", url: "https://www.digitalzameen.com", siteName: "Digital Zameen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/flat-world-book-day-instagram-stories-collection_23-2149309025.jpg", alt: "digital marketplace dashboard interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Digital Zameen | Premium Digital Assets", description: "Premium templates and tools for creators and entrepreneurs. Instant access, lifetime use.", images: ["http://img.b2bpic.net/free-vector/flat-world-book-day-instagram-stories-collection_23-2149309025.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Digital Zameen - Premium Digital Assets & Templates", description: "Discover thousands of templates, AI tools, and business resources for instant download. Built by professionals for freelancers, creators, and entrepreneurs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -