diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 22672e1..77f2c12 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -29,7 +29,6 @@ export default function AboutPage() {
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
- { label: "Blog", href: "/blog" },
],
},
{
@@ -48,6 +47,10 @@ export default function AboutPage() {
},
];
+ const handleContactSubmit = (email: string) => {
+ console.log("Partnership inquiry:", email);
+ };
+
return (
window.location.href = "/contact" },
]}
/>
@@ -114,6 +117,7 @@ export default function AboutPage() {
inputPlaceholder="Your email address"
buttonText="Schedule Now"
termsText="We respect your privacy. Your inquiry will be handled with complete confidentiality."
+ onSubmit={(email: string) => handleContactSubmit(email)}
/>
@@ -125,4 +129,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 8f8acff..b44a909 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -27,7 +27,6 @@ export default function ContactPage() {
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
- { label: "Blog", href: "/blog" },
],
},
{
@@ -46,6 +45,11 @@ export default function ContactPage() {
},
];
+ const handleContactSubmit = (email: string) => {
+ console.log("Contact form submitted:", email);
+ // Add form submission logic here
+ };
+
return (
handleContactSubmit(email)}
/>
@@ -106,4 +111,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4ad9eaa..ddd9164 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,35 +5,21 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans",
- subsets: ["latin"],
+ variable: "--font-nunito-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Luxury Landscapes | Premium Estate Design & Maintenance",
- description: "Award-winning luxury landscape design and maintenance for high-net-worth homeowners. 25+ years of expertise in premium estate landscapes.",
- keywords: "luxury landscape design, estate landscaping, premium landscaping services, high-end garden design, luxury hardscape",
- metadataBase: new URL("https://luxurylandscapes.com"),
+ title: "Luxury Landscapes | Premium Estate Design & Maintenance", description: "Award-winning luxury landscape design and maintenance for high-net-worth homeowners. 25+ years of expertise in premium estate landscapes.", keywords: "luxury landscape design, estate landscaping, premium landscaping services, high-end garden design, luxury hardscape", metadataBase: new URL("https://luxurylandscapes.com"),
alternates: {
- canonical: "https://luxurylandscapes.com",
- },
+ canonical: "https://luxurylandscapes.com"},
openGraph: {
- title: "Luxury Landscapes | Premium Estate Design & Maintenance",
- description: "Award-winning luxury landscape design and maintenance trusted by regional estates for 25+ years.",
- siteName: "Luxury Landscapes",
- type: "website",
- images: [
+ title: "Luxury Landscapes | Premium Estate Design & Maintenance", description: "Award-winning luxury landscape design and maintenance trusted by regional estates for 25+ years.", siteName: "Luxury Landscapes", type: "website", images: [
{
- url: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg",
- alt: "Luxury landscape design and maintenance services",
- },
+ url: "http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg", alt: "Luxury landscape design and maintenance services"},
],
},
twitter: {
- card: "summary_large_image",
- title: "Luxury Landscapes | Premium Estate Design & Maintenance",
- description: "Award-winning luxury landscape design and maintenance for discerning homeowners.",
- images: ["http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg"],
+ card: "summary_large_image", title: "Luxury Landscapes | Premium Estate Design & Maintenance", description: "Award-winning luxury landscape design and maintenance for discerning homeowners.", images: ["http://img.b2bpic.net/free-photo/big-stone-made-chinese-chess-inside-park_1112-1150.jpg"],
},
robots: {
index: true,
@@ -1423,4 +1409,4 @@ export default function RootLayout({