From 6d5e9bec25f06578d59c28e6b7eaf14b9072e691 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:12:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 6 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7afa807..ab23121 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ekta Enterprises | Luxury Interior Design & Turnkey Solutions", description: "Transform your space into a luxury interior with Ekta Enterprises. Complete turnkey design and construction services from concept to completion.", keywords: "luxury interior design, turnkey interior solutions, interior contractor, home renovation, design services", metadataBase: new URL("https://www.ektaenterprises.com"), - alternates: { - canonical: "https://www.ektaenterprises.com"}, - openGraph: { - title: "Ekta Enterprises | Luxury Interior Design", description: "Luxury Interiors. Turnkey Execution. Zero Stress. Complete interior design and construction services.", url: "https://www.ektaenterprises.com", siteName: "Ekta Enterprises", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/blonde-charming-woman-silk-black-jumpsuit-stylish-eyeglasses-sits-brown-big-soft-sofa-ho_197531-33650.jpg", alt: "Ekta Enterprises luxury interior design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ekta Enterprises | Luxury Interior Design", description: "Transform your space into a luxury interior. Turnkey design and construction services.", images: ["http://img.b2bpic.net/free-photo/blonde-charming-woman-silk-black-jumpsuit-stylish-eyeglasses-sits-brown-big-soft-sofa-ho_197531-33650.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ekta Enterprises - Luxury Interior Design & Turnkey Solutions", description: "Transform your space with Ekta Enterprises. Expert interior design, turnkey execution, and comprehensive contracting services for luxury residential and commercial projects."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -