Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 20:59:19 +00:00
2 changed files with 13 additions and 35 deletions

View File

@@ -1,49 +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: "Amexzahlahy | Professional Sprinkler Services & Sales", description: "Expert sprinkler installation, maintenance, and sales for residential and commercial properties. Trusted local service with 12+ years of experience.", keywords: "sprinkler services, irrigation installation, lawn sprinkler systems, sprinkler maintenance, sprinkler repair, smart irrigation", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Amexzahlahy | Professional Sprinkler Services", description: "Premium sprinkler installation, maintenance, and products for healthy landscapes.", siteName: "Amexzahlahy", type: "website"},
twitter: {
card: "summary_large_image", title: "Amexzahlahy | Sprinkler Services", description: "Professional irrigation solutions for your landscape"},
};
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: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Schedule Service", href: "contact" },
{ text: "Get Free Inspection", href: "contact" },
{ text: "Explore Products", href: "products" }
]}
buttonAnimation="slide-up"