9 Commits

Author SHA1 Message Date
874b6e5ff9 Update theme colors 2026-03-04 00:57:43 +00:00
b4372896e5 Update theme colors 2026-03-04 00:57:12 +00:00
8e63bbb835 Update theme colors 2026-03-04 00:56:55 +00:00
7f572cbb88 Update src/app/page.tsx 2026-03-03 21:04:07 +00:00
8c992251f1 Update src/app/layout.tsx 2026-03-03 21:04:05 +00:00
45bc220067 Update src/app/page.tsx 2026-03-03 20:19:53 +00:00
4c0de3d8d2 Update src/app/page.tsx 2026-03-03 20:15:30 +00:00
2c5d3b4192 Update src/app/page.tsx 2026-03-03 20:05:54 +00:00
2f95d6751f Merge version_2 into main
Merge version_2 into main
2026-03-03 20:01:10 +00:00
3 changed files with 29 additions and 56 deletions

View File

@@ -1,54 +1,28 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geist_mono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
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"],
},
};
title: "Rock Yard - Premium Landscaping Materials", description: "Quality landscape materials for your home in Joplin"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -215,7 +215,7 @@ export default function LandingPage() {
},
]}
ctaTitle="Visit Rock Yard Today"
ctaDescription="Stop by our garden center to explore our full selection of landscaping materials. Open daily until 5 PM."
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."
ctaButton={{
text: "Get Directions", href: "https://maps.google.com/?q=815+S+Schifferdecker+Ave,+Joplin,+MO+64801"
}}

View File

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