Merge version_3 into main #3
@@ -134,4 +134,4 @@ export default function AboutPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -126,4 +126,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -179,4 +179,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -134,4 +134,4 @@ export default function ReviewsPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -136,4 +136,4 @@ export default function ServicesPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user