Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "ArtisanGo - Find Skilled Artisans Near You Fast",
|
||||
description: "Connect instantly with verified artisans for plumbing, electrical, painting, HVAC and more. Get quotes, pay securely, leave reviews. Like Uber for home services.",
|
||||
keywords: "artisans, home repair, plumber, electrician, local services, on-demand services, skilled trades, marketplace",
|
||||
metadataBase: new URL("https://artisango.com"),
|
||||
alternates: {
|
||||
canonical: "https://artisango.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "ArtisanGo - Find Skilled Artisans Near You",
|
||||
description: "Connect instantly with verified artisans for any home or business service. Fast, fair, and trustworthy.",
|
||||
url: "https://artisango.com",
|
||||
siteName: "ArtisanGo",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Alqo9ajXpD8slpiZcKW4TWzhMB/a-modern-mobile-app-interface-showing-a--1773177765363-61a78fb4.png",
|
||||
alt: "ArtisanGo marketplace platform",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ArtisanGo - Find Skilled Artisans Near You",
|
||||
description: "Connect with verified professionals for plumbing, electrical, painting & more. Get help in 30 minutes.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Alqo9ajXpD8slpiZcKW4TWzhMB/a-modern-mobile-app-interface-showing-a--1773177765363-61a78fb4.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user