Update src/app/layout.tsx

This commit is contained in:
2026-03-07 09:20:50 +00:00
parent 0807309984
commit 17151e1015

View File

@@ -7,25 +7,20 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
variable: "--font-mulish", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Plomberie Chauffage Montréal | Emergency Plumbing & Heating Services",
description: "24/7 emergency plumbing and heating services in Montréal. Trusted local experts for pipe repair, drain cleaning, water heater service, and furnace maintenance.",
};
title: "Plomberie Chauffage Montréal | Emergency Plumbing & Heating Services", description: "24/7 emergency plumbing and heating services in Montréal. Trusted local experts for pipe repair, drain cleaning, water heater service, and furnace maintenance."};
export default function RootLayout({
children,
@@ -1411,4 +1406,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}