From e9d818f0c0373334e21fa5cf888df873570d2cd1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 23:08:21 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b13001..1afed60 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,5 @@ 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 "./globals.css"; import "@/lib/gsap-setup"; @@ -7,20 +7,32 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", + 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'), + 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({ @@ -32,7 +44,7 @@ export default function RootLayout({ {children} @@ -45,4 +57,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file