tenext redesign

This commit is contained in:
2026-08-03 14:42:01 +05:30
parent 1e3f225bed
commit 6625bb9018
78 changed files with 2798 additions and 859 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Manrope, Sora, DM_Sans } from "next/font/google";
import { Footer } from "@/components/shared/Footer";
import { siteConfig } from "@/data/site-config";
import "./globals.css";
const manrope = Manrope({
@@ -21,10 +22,47 @@ const dmSans = DM_Sans({
weight: ["400", "500", "600", "700"],
});
const title =
"Tenext Technologies — Enterprise Digital Transformation, Cloud, Data & AI";
const description =
"Tenext Technologies helps enterprises transform with cloud, data, AI, and product engineering — delivering predictable outcomes, lower total cost of ownership, and accelerated time to value.";
export const metadata: Metadata = {
title: "Tenext Technologies — Enterprise Digital Transformation, Cloud, Data & AI",
description:
"Tenext Technologies helps enterprises transform with cloud, data, AI, and product engineering — delivering predictable outcomes, lower total cost of ownership, and accelerated time to value.",
metadataBase: new URL(siteConfig.url),
title: {
default: title,
template: "%s | Tenext Technologies",
},
description,
alternates: { canonical: "/" },
openGraph: {
type: "website",
siteName: siteConfig.legalName,
url: siteConfig.url,
title,
description,
},
twitter: {
card: "summary_large_image",
title,
description,
},
};
const organizationJsonLd = {
"@context": "https://schema.org",
"@type": "Organization",
name: siteConfig.legalName,
url: siteConfig.url,
email: siteConfig.email,
telephone: siteConfig.phoneRaw,
address: {
"@type": "PostalAddress",
streetAddress: siteConfig.address.line1,
addressLocality: "Coimbatore",
addressCountry: "IN",
},
sameAs: siteConfig.socials.map((s) => s.url),
};
export default function RootLayout({
@@ -38,6 +76,12 @@ export default function RootLayout({
className={`${manrope.variable} ${sora.variable} ${dmSans.variable}`}
>
<body suppressHydrationWarning>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify(organizationJsonLd),
}}
/>
{children}
<Footer />
</body>