Update src/app/layout.tsx
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
@@ -7,20 +7,32 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
|
||||||
const halant = Halant({
|
const dmSans = DM_Sans({
|
||||||
variable: "--font-halant",
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Webild components 2",
|
title: "Adirondack Peaks Furniture - Wholesale Amish-Made Outdoor Furniture", description: "Premium wholesale manufacturer of Amish-made poly outdoor furniture. Specializing in Adirondack chairs, dining sets, gliders, swings, and outdoor living products for authorized dealers.", keywords: "Amish outdoor furniture, Adirondack furniture, Poly outdoor furniture, Wholesale patio furniture, Adirondack chairs wholesale, Outdoor furniture dealers, Amish-made outdoor furniture, Upstate New York outdoor furniture, outdoor living products, poly lumber furniture", metadataBase: new URL('https://www.adirondackpeaks.com'),
|
||||||
description: "Generated by create next app",
|
alternates: {
|
||||||
|
canonical: 'https://www.adirondackpeaks.com'
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Adirondack Peaks Furniture - Wholesale Amish-Made Outdoor Furniture", description: "Premium wholesale manufacturer of Amish-made poly outdoor furniture for authorized dealers.", url: "https://www.adirondackpeaks.com", siteName: "Adirondack Peaks Furniture", images: [{
|
||||||
|
url: "http://img.b2bpic.net/free-photo/two-empty-chairs-wooden-pier-overlooking-mountains-sunset-light_169016-9949.jpg", alt: "Adirondack chairs overlooking a lake"
|
||||||
|
}],
|
||||||
|
type: "website"
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "Adirondack Peaks Furniture - Wholesale Amish-Made Outdoor Furniture", description: "Premium wholesale manufacturer of Amish-made poly outdoor furniture for authorized dealers.", images: ["http://img.b2bpic.net/free-photo/two-empty-chairs-wooden-pier-overlooking-mountains-sunset-light_169016-9949.jpg"]
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -32,7 +44,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
Reference in New Issue
Block a user