Switch to version 3: modified src/app/layout.tsx

This commit is contained in:
2026-03-13 10:29:21 +00:00
parent b608e34838
commit 54abaed049

View File

@@ -6,8 +6,6 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Inter_Tight } from "next/font/google";
@@ -16,12 +14,8 @@ export const metadata: Metadata = {
description: 'Award-winning creative web agency specializing in web design, branding, mobile apps, and digital strategy. Transform your vision into reality with our expert team.',
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
export default function RootLayout({
@@ -32,7 +26,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script