From f7dd398dd884161dc94ffbf660bd2a2170e858ce Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:24:47 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1436 ++------------------------------------------ 1 file changed, 43 insertions(+), 1393 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0bab7b..9570ef9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,64 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import Tag from "@/components/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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Webild - Digital Design & Development Solutions", description: "Create stunning digital experiences with our comprehensive design and development solutions. Transform your vision into reality.", keywords: "design, development, web design, digital solutions, branding", openGraph: { - title: "Webild - Digital Design & Development Solutions", description: "Create stunning digital experiences with our comprehensive design and development solutions.", type: "website", siteName: "Webild"}, - twitter: { - card: "summary_large_image", title: "Webild - Digital Design & Development Solutions", description: "Create stunning digital experiences with our comprehensive design and development solutions."}, - robots: { - index: true, - follow: true, - }, + title: "Webild - Digital Design & Development Solutions | Indian Restaurant Website Builder", description: "Transform your restaurant's digital presence with Webild. Beautiful, responsive websites optimized for Indian restaurants. View menu, order now, and manage your online presence.", keywords: "restaurant website, Indian food, online ordering, digital menu, restaurant design, web development, responsive design", robots: "index, follow", openGraph: { + title: "Webild - Digital Design & Development Solutions", description: "Create stunning digital experiences for your restaurant with Webild.", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +