19 Commits

Author SHA1 Message Date
8c5d237c58 Merge version_3 into main
Merge version_3 into main
2026-03-03 20:34:29 +00:00
ac0497ab44 Update src/app/styles/variables.css 2026-03-03 20:34:17 +00:00
3d331a0677 Update src/app/services/page.tsx 2026-03-03 20:34:15 +00:00
4327e268c9 Update src/app/reviews/page.tsx 2026-03-03 20:34:12 +00:00
b3dc20e99f Update src/app/page.tsx 2026-03-03 20:34:11 +00:00
2146711ca3 Update src/app/layout.tsx 2026-03-03 20:34:09 +00:00
59139200a7 Update src/app/contact/page.tsx 2026-03-03 20:34:07 +00:00
12109471a0 Update src/app/about/page.tsx 2026-03-03 20:34:05 +00:00
cc86777934 Switch to version 2: modified src/app/services/page.tsx 2026-03-03 20:31:08 +00:00
d2613389ec Switch to version 2: modified src/app/reviews/page.tsx 2026-03-03 20:31:08 +00:00
8edf4a8434 Switch to version 2: modified src/app/page.tsx 2026-03-03 20:31:07 +00:00
a285675723 Switch to version 2: modified src/app/contact/page.tsx 2026-03-03 20:31:06 +00:00
2ab5795c23 Switch to version 2: modified src/app/about/page.tsx 2026-03-03 20:31:05 +00:00
d53500303c Switch to version 1: modified src/app/services/page.tsx 2026-03-03 20:28:48 +00:00
78d38abd32 Switch to version 1: modified src/app/reviews/page.tsx 2026-03-03 20:28:46 +00:00
5b696de7d4 Switch to version 1: modified src/app/page.tsx 2026-03-03 20:28:44 +00:00
ebcfa8b616 Switch to version 1: modified src/app/contact/page.tsx 2026-03-03 20:28:43 +00:00
35f014e8bd Switch to version 1: modified src/app/about/page.tsx 2026-03-03 20:28:41 +00:00
82e488619d Merge version_2 into main
Merge version_2 into main
2026-03-03 20:14:47 +00:00
7 changed files with 27 additions and 66 deletions

View File

@@ -134,4 +134,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -126,4 +126,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Best Landscaping Services LLC | Top-Rated Lawn Care in Rosharon, TX",
description: "5-star landscaping company in Rosharon, TX. Professional lawn care, stone landscaping, patio extensions & more. Fair pricing. Call (832) 970-7965.",
keywords: "landscaping, lawn care, Rosharon TX, stone work, patio, landscaper, local",
metadataBase: new URL("https://bestlandscapingservices.com"),
alternates: {
canonical: "https://bestlandscapingservices.com",
},
openGraph: {
title: "Best Landscaping Services LLC - Premium Outdoor Services",
description: "Top-rated landscaping company in Rosharon, TX. Trusted by locals. 5-star reviews.",
siteName: "Best Landscaping Services LLC",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/chinese-tea-ceremony-park-tea-drinking-open-air_613910-7341.jpg",
alt: "Professional landscaping service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Best Landscaping Services LLC - Rosharon, TX",
description: "5-star landscaping & lawn care. Local, reliable, fair pricing.",
images: ["http://img.b2bpic.net/free-photo/chinese-tea-ceremony-park-tea-drinking-open-air_613910-7341.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Best Landscaping Services", description: "Top-rated landscaping and outdoor services in Rosharon, TX"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -179,4 +179,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -134,4 +134,4 @@ export default function ReviewsPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -136,4 +136,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120a00e6;;
--primary-cta: #FF7B05;;
--secondary-cta: #f9f9f9;;
--accent: #e2e2e2;;
--background-accent: #FF7B05;; */
/* --background: #1a1a1a;;
--card: #2a2a2a;;
--foreground: #ffffff;;
--primary-cta: #D97706;;
--secondary-cta: #5a4a3a;;
--accent: #8B6F47;;
--background-accent: #8B4513;; */
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120a00e6;;
--primary-cta: #FF7B05;;
--background: #1a1a1a;;
--card: #2a2a2a;;
--foreground: #ffffff;;
--primary-cta: #D97706;;
--primary-cta-text: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta: #5a4a3a;;
--secondary-cta-text: #120a00e6;;
--accent: #e2e2e2;;
--background-accent: #FF7B05;;
--accent: #8B6F47;;
--background-accent: #8B4513;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);