Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae480f104d | |||
| 3e150f8117 | |||
| 2ccf5ff1ec | |||
| 70441dfe76 | |||
| ec4181d440 |
@@ -1,57 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "J&JD Landscaping LLC | Professional Landscaping & Stonework", description: "Expert landscaping, stonework, and patio design services. Transform your outdoor space with J&JD Landscaping LLC. Free consultation available.", keywords: "landscaping, stonework, patio design, landscaper, outdoor design, hardscape, lawn care", metadataBase: new URL("https://www.jjdlandscaping.com"),
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://www.jjdlandscaping.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "J&JD Landscaping LLC | Professional Outdoor Transformations", description: "Premium landscaping and hardscape services for your home. Expert design and installation.", url: "https://www.jjdlandscaping.com", siteName: "J&JD Landscaping LLC", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg", alt: "Beautiful landscaped outdoor space"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "J&JD Landscaping LLC", description: "Professional landscaping and patio design services.", images: ["http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,11 +49,11 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg", imageAlt: "Beautiful landscaped backyard" },
|
{ imageSrc: "http://img.b2bpic.net/premium-photo/rolls-natural-grass-turfs-installed-by-professional-landscaper_1426-22710.jpg?id=57888983", imageAlt: "Beautiful landscaped backyard" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer_158595-6991.jpg", imageAlt: "Professional landscaping team" }
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdZmTeEJu87FUnUV3dZwh5Elcq/uploaded-1772926779035-qf0kt1zc.jpg", imageAlt: "Professional landscaping team" }
|
||||||
]}
|
]}
|
||||||
rating={5}
|
rating={5}
|
||||||
ratingText="Trusted by 500+ Homeowners"
|
ratingText="Trusted by 500+ Homeowners | 15 Years in Business"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Consultation", href: "contact" },
|
{ text: "Schedule Consultation", href: "contact" },
|
||||||
{ text: "View Portfolio", href: "portfolio" }
|
{ text: "View Portfolio", href: "portfolio" }
|
||||||
|
|||||||
Reference in New Issue
Block a user