Files
tenext-next/app/layout.tsx
2026-07-30 20:34:44 +05:30

47 lines
1.2 KiB
TypeScript

import type { Metadata } from "next";
import { Manrope, Sora, DM_Sans } from "next/font/google";
import { Footer } from "@/components/shared/Footer";
import "./globals.css";
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
const sora = Sora({
variable: "--font-sora",
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
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.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${manrope.variable} ${sora.variable} ${dmSans.variable}`}
>
<body suppressHydrationWarning>
{children}
<Footer />
</body>
</html>
);
}