diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e3921fb..5472307 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +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: "Hyperverse Business Solutions - IT & Business Services in Chittoor", - description: "Professional business consulting, IT solutions, and digital services for Chittoor businesses. Trusted local expert with 5.0 rating. Call now for free consultation.", - keywords: "business solutions Chittoor, IT services Andhra Pradesh, business consulting, software development, digital services", - metadataBase: new URL("https://hyperverse-solutions.in"), - alternates: { - canonical: "https://hyperverse-solutions.in", - }, - openGraph: { - title: "Hyperverse Business Solutions - Professional Services in Chittoor", - description: "Trusted business consulting and IT solutions provider for Chittoor & Andhra Pradesh. Expert services, 5.0 rating, fast response.", - url: "https://hyperverse-solutions.in", - siteName: "Hyperverse Business Solutions", - type: "website", - images: [ - { - url: "https://hyperverse-solutions.in/og-image.jpg", - alt: "Hyperverse Business Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Hyperverse Business Solutions - Chittoor's Trusted IT Partner", - description: "Professional business consulting & IT services. 5.0 rated. Call now: +91-9876543210", - images: ["https://hyperverse-solutions.in/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hyperverse - Professional Business & Technology Solutions in Chittoor", description: "Helping local businesses grow with reliable digital services, IT consulting, and innovative business solutions tailored to your needs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -