3 Commits

Author SHA1 Message Date
58ccec220a Update src/app/page.tsx 2026-03-10 06:02:00 +00:00
8d7acce9f0 Update src/app/layout.tsx 2026-03-10 06:01:59 +00:00
d87c719a37 Merge version_3 into main
Merge version_3 into main
2026-03-10 05:59:49 +00:00
2 changed files with 7 additions and 47 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroOverlay
title="Innovative ICT Solutions for Your Business"
title="Scale Your Business Without Infrastructure Headaches"
description="Transform your digital infrastructure with cutting-edge technology services. We deliver secure, scalable, and efficient solutions tailored to your needs."
tag="Enterprise Technology"
tagIcon={Zap}