From af3c06339ac7c198873664ae637b84ea0fe79db0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:35:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1437 +------------------------------------------- 1 file changed, 7 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7231b15..36d3ca8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ethinkroot IT Services - End-to-End IT Solutions for SMBs", - description: "Comprehensive IT services including managed infrastructure, cloud migration, e-learning platforms, cybersecurity, and custom software development. Trusted by 500+ businesses.", - keywords: "IT services, managed IT support, cloud migration, e-learning platform, cybersecurity, infrastructure management, AWS, LMS", - robots: { - index: true, - follow: true, - }, - metadataBase: new URL("https://ethinkroot.com"), - alternates: { - canonical: "https://ethinkroot.com", - }, - openGraph: { - title: "Ethinkroot IT Services - End-to-End IT Solutions", - description: "Transform your business infrastructure with comprehensive IT support, cloud solutions, and innovative technology services.", - siteName: "Ethinkroot", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhaEliHhlGpNLJ7hWR0Cks4lNX/a-modern-it-infrastructure-dashboard-sho-1773047375509-e493ec30.png", - alt: "Ethinkroot IT Services Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Ethinkroot IT Services", - description: "End-to-End IT Solutions for Your Business", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhaEliHhlGpNLJ7hWR0Cks4lNX/a-modern-it-infrastructure-dashboard-sho-1773047375509-e493ec30.png", - ], - }, -}; + title: "Ethinkroot - End-to-End IT Solutions", description: "Transform your infrastructure with comprehensive managed services, cloud migration, security, automation, and custom software development."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -