diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index bf80604..a64177c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -80,7 +80,7 @@ export default function ContactPage() { title="Get Your Free Consultation" description="Ready to transform your outdoor space? Contact us today for a personalized consultation and quote." useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/outdoors-portrait-young-attractive-bearded-hispanic-man-blue-t-shirt-gloves-working-garden-with-tools-cutting-leaves-watering-plants-countryside-life_176420-19904.jpg" + imageSrc="http://img.b2bpic.net/free-photo/outdoors-portrait-young-attractive-bearded-hispanic-man-blue-t-shirt-gloves-working-garden-with-tools-cutting-leaves-watering-plants-countryside-life_176420-19904.jpg?_wi=2" imageAlt="Professional landscaper at work planting" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cbe480..21264a6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ 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 "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); + const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "GreenScape Landscaping | Professional Outdoor Design", + description: "Transform your outdoor space with GreenScape Landscaping. Expert garden design, lawn maintenance, and hardscaping services.", + keywords: "landscaping, garden design, lawn care, hardscaping, outdoor design, professional landscaper", + metadataBase: new URL("https://greenscape-landscaping.com"), + alternates: { + canonical: "https://greenscape-landscaping.com", + }, + openGraph: { + title: "GreenScape Landscaping | Professional Outdoor Design", + description: "Transform your outdoor space with expert landscaping services", + url: "https://greenscape-landscaping.com", + siteName: "GreenScape Landscaping", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beautiful-girl-talking-phone_72229-1235.jpg", + alt: "Beautiful landscaped garden", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "GreenScape Landscaping", + description: "Professional landscaping services for your home", + images: ["http://img.b2bpic.net/free-photo/beautiful-girl-talking-phone_72229-1235.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}