diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7e7e6e8..a2a9195 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Digital Store | Premium eBooks, Courses & Templates", - description: "Discover and purchase premium digital products including eBooks, online courses, design templates, and downloadable resources. Instant downloads and secure checkout.", - keywords: "digital products, eBooks, online courses, design templates, downloadable resources, digital marketplace", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Digital Store | Premium Digital Products", - description: "Shop exclusive eBooks, courses, templates, and digital resources with instant access.", - siteName: "Digital Store", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/view-vacuum-cleaner-robot-flat-surface-floor_23-2151736848.jpg", - alt: "Digital Store - Premium Digital Products Marketplace", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Digital Store | Premium Digital Products", - description: "Shop exclusive eBooks, courses, templates, and digital resources with instant access.", - images: ["http://img.b2bpic.net/free-photo/view-vacuum-cleaner-robot-flat-surface-floor_23-2151736848.jpg"], - }, -}; + title: "Digital Store - Premium Digital Products", description: "Access exclusive eBooks, online courses, design templates, and downloadable resources instantly."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}