1 Commits

Author SHA1 Message Date
f5c4da5254 Update src/app/page.tsx 2026-03-03 20:13:53 +00:00
3 changed files with 56 additions and 29 deletions

View File

@@ -1,28 +1,54 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Mulish } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const geist = Geist({ const mulish = Mulish({
variable: "--font-geist-sans", subsets: ["latin"], variable: "--font-mulish", subsets: ["latin"],
}); });
const geist_mono = Geist_Mono({ const halant = Halant({
variable: "--font-geist-mono", subsets: ["latin"], variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Rock Yard - Premium Landscaping Materials", description: "Quality landscape materials for your home in Joplin"}; title: "Rock Yard Joplin | Landscaping Materials & Garden Center", description: "Quality landscaping rocks, stones, mulch, and garden materials in Joplin, MO. Expert advice and competitive pricing. Visit us at 815 S Schifferdecker Ave.", keywords: "landscaping rocks, garden center, landscape materials, gravel, mulch, Joplin MO, decorative stones", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Rock Yard Joplin | Premium Landscaping Materials", description: "Discover quality landscaping rocks and garden materials at Rock Yard. Serving Joplin with expert advice and fair pricing.", url: "https://rockyardjoplin.com", siteName: "Rock Yard", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/pile-weathered-red-bricks_632498-60816.jpg", alt: "Premium landscaping rocks and materials"},
],
},
twitter: {
card: "summary_large_image", title: "Rock Yard Joplin | Landscaping Materials", description: "Quality rocks, stones, and garden materials for your landscaping projects.", images: ["http://img.b2bpic.net/free-photo/pile-weathered-red-bricks_632498-60816.jpg"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: { }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}) { }>) {
return ( return (
<html lang="en"> <html lang="en" suppressHydrationWarning>
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}> <ServiceWrapper>
{children} <body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1390,6 +1416,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -215,7 +215,7 @@ export default function LandingPage() {
}, },
]} ]}
ctaTitle="Visit Rock Yard Today" ctaTitle="Visit Rock Yard Today"
ctaDescription="Visit us in person at 815 S Schifferdecker Ave, Joplin. Open daily until 5 PM—our team is ready to help with your project." ctaDescription="Stop by our garden center to explore our full selection of landscaping materials. Open daily until 5 PM."
ctaButton={{ ctaButton={{
text: "Get Directions", href: "https://maps.google.com/?q=815+S+Schifferdecker+Ave,+Joplin,+MO+64801" text: "Get Directions", href: "https://maps.google.com/?q=815+S+Schifferdecker+Ave,+Joplin,+MO+64801"
}} }}

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;;;;; /* --background: #f5f5f5;;
--card: #ffffff;;;;; --card: #ffffff;;
--foreground: #1c1c1c;;;;; --foreground: #1c1c1c;;
--primary-cta: #84a643;;;;; --primary-cta: #6139e6;;
--secondary-cta: #ffffff;;;;; --secondary-cta: #ffffff;;
--accent: #84a643;;;;; --accent: #6139e6;;
--background-accent: #e8daa7;;;;; */ --background-accent: #b3a8e8;; */
--background: #f5f5f5;;;;; --background: #f5f5f5;;
--card: #ffffff;;;;; --card: #ffffff;;
--foreground: #1c1c1c;;;;; --foreground: #1c1c1c;;
--primary-cta: #84a643;;;;; --primary-cta: #6139e6;;
--primary-cta-text: #f5f5f5;;;;; --primary-cta-text: #f5f5f5;;
--secondary-cta: #ffffff;;;;; --secondary-cta: #ffffff;;
--secondary-cta-text: #1c1c1c;;;;; --secondary-cta-text: #1c1c1c;;
--accent: #84a643;;;;; --accent: #6139e6;;
--background-accent: #e8daa7;;;;; --background-accent: #b3a8e8;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);