Update src/app/layout.tsx

This commit is contained in:
2026-03-11 15:39:34 +00:00
parent d6f42edf91
commit 3fb5a896fb

View File

@@ -6,18 +6,50 @@ 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: "Esilos Print & Design | Website Design for Local Businesses Ontario",
description: "Professional website design for local businesses in Ontario. Get more customers with a modern, mobile-optimized website. Free consultation: 519-792-3115",
keywords: "website design Ontario, local business websites, small business web design, professional website builder, lead generation websites",
metadataBase: new URL("https://esilosprint.com"),
alternates: {
canonical: "https://esilosprint.com",
},
openGraph: {
title: "Professional Websites for Local Businesses | Esilos Print & Design",
description: "Transform your local business with a professional, lead-generating website. Designed specifically for Ontario service businesses.",
url: "https://esilosprint.com",
siteName: "Esilos Print & Design",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147900458.jpg",
alt: "Esilos Print & Design - Professional Websites for Local Businesses",
},
],
},
twitter: {
card: "summary_large_image",
title: "Professional Websites for Local Businesses | Esilos",
description: "Get a modern website that brings you more customers. Built for local service businesses.",
images: ["http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147900458.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +58,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 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}