diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2086a53..8e6cbea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "IndiaBusinessSale | Sell Your Business Confidentially & Profitably", - description: "Expert business exit advisory for Indian entrepreneurs. Confidential valuations, buyer sourcing, tax optimization & legal support. Maximize your business sale value. Get free valuation today.", - keywords: "business sale India, business exit, M&A advisory, business valuation, sell business, exit planning, business buyer, acquisition India", - metadataBase: new URL("https://www.indiabusinesssale.com"), - alternates: { - canonical: "https://www.indiabusinesssale.com", - }, - openGraph: { - title: "IndiaBusinessSale | Sell Your Business with Confidence", - description: "India's trusted business exit advisor. Confidential exits. Maximum valuations. Expert legal & tax support.", - url: "https://www.indiabusinesssale.com", - siteName: "IndiaBusinessSale", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/business-partners-meeting-breakfast_74855-1160.jpg", - alt: "Professional business consulting office", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Sell Your Business Confidentially & Profitably | IndiaBusinessSale", - description: "Expert business exit advisory for Indian entrepreneurs. Confidential exits. Maximum valuations. Free valuation today.", - images: ["http://img.b2bpic.net/free-photo/business-partners-meeting-breakfast_74855-1160.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "IndiaBusinessSale - Sell Your Business Confidentially", description: + "Expert business exit advisory services. Maximize your business valuation with confidential consulting, tax optimization, and buyer identification."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -