tenext redesign
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user