Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-06-10 23:08:25 +00:00
3 changed files with 25 additions and 13 deletions

View File

@@ -46,7 +46,7 @@ export default function AboutPage() {
title="The Adirondack Peaks Difference: Our Heritage of Quality"
description="At Adirondack Peaks Furniture, our commitment runs deep to the enduring beauty of the Adirondacks, to the timeless artistry of Amish craftsmanship, and to the unwavering trust of our dealer partners. We are a family-owned wholesale manufacturer, specializing in premium poly outdoor furniture that combines traditional methods with modern durability. Every piece is meticulously handcrafted in the USA, designed to withstand the elements and provide comfort for generations. Our mission is to equip retailers with exceptional products that exceed customer expectations, backed by a legacy of integrity and service."
tag="Our Story & Values"
imageSrc="http://img.b2bpic.net/free-photo/young-woman-crafting-wood_23-2148742361.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-woman-crafting-wood_23-2148742361.jpg?_wi=2"
imageAlt="amish craftsman building furniture"
useInvertedBackground={true}
/>

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -67,7 +67,7 @@ export default function HomePage() {
title="Our Story: Quality, Craftsmanship, Legacy"
description="Adirondack Peaks Furniture is a proud Upstate New York wholesale manufacturer and distributor of authentic Amish-made poly outdoor furniture. With a deep commitment to tradition and excellence, we bring you durable, beautiful pieces perfect for any outdoor setting."
tag="About Us"
imageSrc="http://img.b2bpic.net/free-photo/young-woman-crafting-wood_23-2148742361.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-woman-crafting-wood_23-2148742361.jpg?_wi=1"
imageAlt="amish craftsman building furniture"
useInvertedBackground={true}
/>