diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 66a673d..4c9fb22 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Lato } 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 lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "ICT Solutions | Enterprise Technology Services", description: "Transform your business with TechVision's comprehensive ICT services. Cloud infrastructure, cybersecurity, and 24/7 managed IT support for enterprises.", keywords: "ICT services, cloud computing, cybersecurity, managed IT, enterprise technology, IT infrastructure", metadataBase: new URL("https://techvision.com"),
- alternates: {
- canonical: "https://techvision.com"},
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "ICT Solutions | Enterprise Technology Services", description: "Transform your business with TechVision's comprehensive ICT services. Cloud infrastructure, cybersecurity, and 24/7 managed IT support for enterprises.", url: "https://techvision.com", siteName: "TechVision", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjH7znA6tHGbsw1jyRuA29OB1U/a-modern-clean-ict-dashboard-interface-d-1773098971090-139a8892.png", alt: "TechVision ICT Solutions Dashboard"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "ICT Solutions | Enterprise Technology Services", description: "Transform your business with TechVision's comprehensive ICT services. Cloud infrastructure, cybersecurity, and 24/7 managed IT support for enterprises.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjH7znA6tHGbsw1jyRuA29OB1U/a-modern-clean-ict-dashboard-interface-d-1773098971090-139a8892.png"],
- },
-};
+ title: "TechVision - Enterprise ICT Solutions", description: "Transform your digital infrastructure with cutting-edge technology services. We deliver secure, scalable, and efficient solutions tailored to your needs."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-