Update src/app/layout.tsx

This commit is contained in:
2026-06-10 11:38:14 +00:00
parent 8df3df4887
commit 9f859ef613

View File

@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Barlow_Condensed, Inter, Space_Mono } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
@@ -11,17 +11,19 @@ import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
title: "CARLSTRA AERO LTD", description: "Built to deliver. Trusted to comply."};
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const barlowCondensed = Barlow_Condensed({
variable: "--font-barlow-condensed", subsets: ["latin"],
weight: ["700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const spaceMono = Space_Mono({\n variable: "--font-space-mono",\n subsets: ["latin"],\n weight: ["400", "700"],\n});
export default function RootLayout({
children,
}: Readonly<{
@@ -30,7 +32,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${barlowCondensed.variable} ${inter.variable} ${spaceMono.variable} antialiased`}>
<Tag />
{children}
<script