From 0fad1800061f8c7c775646e0d04272eb6ae2562e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:03:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++----------------------------------------- 1 file changed, 7 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b3b575d..ebfc60a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TechVision | IT Solutions & Custom Web Development", - description: "Enterprise IT solutions, custom web development, cloud infrastructure, and DevOps services for startups to enterprises. Expert team delivering scalable, secure technology.", - keywords: "IT solutions, web development, cloud services, DevOps, software development, IT consulting, enterprise software", - metadataBase: new URL("https://techvision.io"), - alternates: { - canonical: "https://techvision.io", - }, - openGraph: { - title: "TechVision - Modern IT Solutions & Custom Development", - description: "Transform your business with scalable IT solutions, custom web development, and cloud infrastructure services.", - type: "website", - siteName: "TechVision", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png", - alt: "TechVision IT Solutions Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TechVision - IT Solutions & Web Development", - description: "Enterprise-grade IT solutions for modern businesses. Custom development, cloud infrastructure, and DevOps expertise.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXCJxPMJAVcO5OyESoUeacrYJZ/a-modern-clean-software-dashboard-interf-1772729537585-9c919811.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechVision - Scalable IT Solutions", description: "Custom web development, cloud infrastructure, and enterprise software solutions for modern enterprises."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}