4 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
3986a619ab Update src/app/page.tsx 2026-03-10 05:59:45 +00:00
2 changed files with 8 additions and 48 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), 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."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <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." description="Transform your digital infrastructure with cutting-edge technology services. We deliver secure, scalable, and efficient solutions tailored to your needs."
tag="Enterprise Technology" tag="Enterprise Technology"
tagIcon={Zap} tagIcon={Zap}
@@ -52,7 +52,7 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjH7znA6tHGbsw1jyRuA29OB1U/a-modern-clean-ict-dashboard-interface-d-1773098971090-139a8892.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AjH7znA6tHGbsw1jyRuA29OB1U/a-modern-clean-ict-dashboard-interface-d-1773098971090-139a8892.png"
imageAlt="Modern ICT infrastructure and digital solutions" imageAlt="Modern ICT infrastructure and digital solutions"
buttons={[ buttons={[
{ text: "Explore Services", href: "services" }, { text: "Start Your Transformation", href: "services" },
{ text: "Schedule Consultation", href: "contact" } { text: "Schedule Consultation", href: "contact" }
]} ]}
/> />