Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 874b6e5ff9 | |||
| b4372896e5 | |||
| 8e63bbb835 | |||
| 7f572cbb88 | |||
| 8c992251f1 | |||
| 45bc220067 | |||
| 4c0de3d8d2 | |||
| 2c5d3b4192 | |||
| 2f95d6751f |
@@ -1,54 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
import { Geist, Geist_Mono } 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 mulish = Mulish({
|
const geist = Geist({
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geist_mono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", 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 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: {
|
title: "Rock Yard - Premium Landscaping Materials", description: "Quality landscape materials for your home in Joplin"};
|
||||||
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" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geist_mono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
ctaTitle="Visit Rock Yard Today"
|
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={{
|
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"
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -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: #6139e6;;
|
--primary-cta: #84a643;;;;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;;;;
|
||||||
--accent: #6139e6;;
|
--accent: #84a643;;;;;
|
||||||
--background-accent: #b3a8e8;; */
|
--background-accent: #e8daa7;;;;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #f5f5f5;;;;;
|
||||||
--card: #ffffff;;
|
--card: #ffffff;;;;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #1c1c1c;;;;;
|
||||||
--primary-cta: #6139e6;;
|
--primary-cta: #84a643;;;;;
|
||||||
--primary-cta-text: #f5f5f5;;
|
--primary-cta-text: #f5f5f5;;;;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;;;;
|
||||||
--secondary-cta-text: #1c1c1c;;
|
--secondary-cta-text: #1c1c1c;;;;;
|
||||||
--accent: #6139e6;;
|
--accent: #84a643;;;;;
|
||||||
--background-accent: #b3a8e8;;
|
--background-accent: #e8daa7;;;;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user