From fc0ef80ead6bbfd63cd5b506081a6e47c6b1c55f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:45:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 -------------------------------------------- 1 file changed, 1423 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42aef39..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "JK Slides - Professional PowerPoint Presentations in 24 Hours", description: "Affordable, modern PowerPoint presentation design for students, startups, and professionals. ₹249-₹799. Fast 24-hour turnaround. Order now!", keywords: "PowerPoint presentation design, presentation designer, affordable slides, professional presentations, quick turnaround", metadataBase: new URL("https://jkslides.com"), - alternates: { - canonical: "https://jkslides.com" - }, - openGraph: { - title: "JK Slides - Professional PowerPoint Design", description: "Get stunning presentation designs in just 24 hours. Affordable rates for students and professionals.", url: "https://jkslides.com", siteName: "JK Slides", type: "website" - }, - twitter: { - card: "summary_large_image", title: "JK Slides - Professional PowerPoint Presentations", description: "24-hour presentation design service. Clean, modern slides starting at ₹249." - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -