5 Commits

Author SHA1 Message Date
6ef8bd4427 Update src/app/page.tsx 2026-03-06 20:59:14 +00:00
fc1dad57f5 Update src/app/layout.tsx 2026-03-06 20:59:14 +00:00
aa9089b294 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:56:43 +00:00
bb40f5fc67 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:55:53 +00:00
e39a602475 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:54:23 +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"