Update src/app/layout.tsx

This commit is contained in:
2026-03-13 03:20:01 +00:00
parent 5f42fed3ee
commit 9c605dbf4c

View File

@@ -6,18 +6,22 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Professional Tree Services Perth | Trees A Crowd",
description: "Expert tree removal, pruning & maintenance in Perth WA. Safe, reliable local service. Call 0450 552 659 for free quote.",
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +30,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -38,4 +44,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}