Files
79900e9a-1689-485a-9f97-e10…/src/app/layout.tsx
2026-05-02 02:17:48 +00:00

51 lines
1.4 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
export const metadata: Metadata = {
title: 'VertexLabs | Scalable Tech Solutions',
description: 'VertexLabs is a leading tech agency specializing in scalable software infrastructure, AI, and enterprise Cloud solutions.',
openGraph: {
"title": "VertexLabs | Scalable Tech Solutions",
"description": "High-performance software and AI infrastructure solutions.",
"siteName": "VertexLabs",
"type": "website"
},
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}