Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 14:04:42 +00:00
2 changed files with 10 additions and 60 deletions

View File

@@ -1,69 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "TechVision - Enterprise IT Solutions Saudi Arabia",
description: "Enterprise-grade IT services for Saudi Arabia. Cloud infrastructure, cybersecurity, managed services, and digital transformation from trusted local experts.",
keywords: "IT services Saudi Arabia, cloud infrastructure, cybersecurity, managed IT services, digital transformation",
openGraph: {
title: "TechVision - Your Digital Transformation Partner",
description: "Enterprise IT solutions trusted by Saudi Arabia's leading organizations. Cloud, security, and transformation expertise.",
siteName: "TechVision",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWqqnyRA2YfKf81BbU6ECDVrMP/modern-saudi-business-professionals-in-a-1772718992514-199b93b1.png",
alt: "TechVision Enterprise IT Solutions",
},
],
},
twitter: {
card: "summary_large_image",
title: "TechVision - Enterprise IT Partner Saudi Arabia",
description: "Digital transformation solutions for enterprises in the Gulf region.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWqqnyRA2YfKf81BbU6ECDVrMP/modern-saudi-business-professionals-in-a-1772718992514-199b93b1.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "TechVision - Enterprise IT Solutions", description: "Enterprise-grade IT solutions for digital transformation in Saudi Arabia"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1431,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -218,10 +218,10 @@ export default function HomePage() {
metrics={[
{
id: "1", title: "Enterprise Clients", subtitle: "Leading Saudi organizations", category: "Portfolio", value: "150+"},
{
id: "2", title: "Infrastructure Projects", subtitle: "Successfully deployed", category: "Delivery", value: "320"},
{
id: "3", title: "Average Uptime", subtitle: "Managed systems", category: "Reliability", value: "99.98%"},
{
id: "2", title: "Infrastructure Projects", subtitle: "Successfully deployed", category: "Delivery", value: "320"},
{
id: "4", title: "Security Certifications", subtitle: "Industry standards", category: "Compliance", value: "18"},
{
@@ -242,4 +242,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}