diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c57e34b..058a262 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -80,7 +80,7 @@ export default function AboutPage() { tag="Our Story" tagIcon={Award} tagAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=03ifi9" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=03ifi9&_wi=2" imageAlt="Spot On Plumbing team of expert technicians" useInvertedBackground={true} buttons={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..51cbca4 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 { Libre_Baskerville } 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 { Libre_Baskerville } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Spot On Plumbing Tulsa — Professional Plumbing Services", + description: "Fast, reliable plumbing services in Tulsa. Same-day service, honest pricing, licensed technicians. Emergency repair available 24/7.", + keywords: "plumbing services Tulsa, plumber near me, emergency plumbing, water heater repair, drain cleaning", + metadataBase: new URL("https://spotonplumbing.com"), + alternates: { + canonical: "https://spotonplumbing.com", + }, + openGraph: { + title: "Spot On Plumbing of Tulsa", + description: "Professional plumbing services for homes and businesses. Fast response, honest pricing, satisfaction guaranteed.", + url: "https://spotonplumbing.com", + siteName: "Spot On Plumbing", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=03ifi9", + alt: "professional plumber working on sink repair", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Spot On Plumbing Tulsa", + description: "Fast, professional plumbing services. Licensed, insured, locally owned.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=03ifi9"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -32,7 +65,9 @@ export default function RootLayout({ return ( - + {children}