Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 20a0875145 | |||
| ae480f104d | |||
| d4970b3b66 | |||
| 3e150f8117 | |||
| 2ccf5ff1ec | |||
| 70441dfe76 | |||
| 8281727ef4 | |||
| ec4181d440 | |||
| 7e160d2e63 | |||
| 9dcfb03974 | |||
| 0e5c1896f1 | |||
| 1b84c9b24a | |||
| 7ab46bf7ac | |||
| db50f75a31 | |||
| 954ffe4537 | |||
| f2235a8eb2 | |||
| c1488880a0 |
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } 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 halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1023.jpg", 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: "http://img.b2bpic.net/premium-photo/rolls-natural-grass-turfs-installed-by-professional-landscaper_1426-22710.jpg?id=57888983", imageAlt: "Beautiful landscaped backyard" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdZmTeEJu87FUnUV3dZwh5Elcq/uploaded-1772926779035-qf0kt1zc.jpg", imageAlt: "Professional landscaping team" }
|
||||
]}
|
||||
rating={5}
|
||||
ratingText="Trusted by 500+ Homeowners"
|
||||
ratingText="Trusted by 500+ Homeowners | 15 Years in Business"
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "contact" },
|
||||
{ text: "View Portfolio", href: "portfolio" }
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #1f7cff;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #dc2626;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #010101;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #1f7cff;
|
||||
--background-accent: #f96b2f;
|
||||
--accent: #2563eb;
|
||||
--background-accent: #16a34a;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user