diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 473d1f7..fca783f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -74,7 +74,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/high-angle-shot-famous-otaki-beach-new-zealand_181624-10535.jpg" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-shot-famous-otaki-beach-new-zealand_181624-10535.jpg?_wi=3" imageAlt="suburban New Jersey homes residential" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..1f83659 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Roofing Contractor Milltown NJ | Navarro Family Roofing", + description: "Trusted roofing contractor in Milltown, NJ. Emergency repairs, roof replacement, inspections, and gutter installation. 4.8★ rating, 24/7 service.", + keywords: "roofing contractor Milltown NJ, roof repair Milltown, roof replacement Middlesex County, emergency roof repair NJ, roofing services", + metadataBase: new URL("https://navarrofamilyroofing.com"), + alternates: { + canonical: "https://navarrofamilyroofing.com", + }, + openGraph: { + title: "Navarro Family Roofing - Milltown's Trusted Roofing Experts", + description: "Professional roof repair, replacement, and inspection services in Milltown NJ. Licensed, insured, and family-owned.", + url: "https://navarrofamilyroofing.com", + siteName: "Navarro Family Roofing", + type: "website", + images: [ + { + url: "https://navarrofamilyroofing.com/og-image.jpg", + alt: "Navarro Family Roofing - Professional roofing crew", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Navarro Family Roofing - Milltown NJ", + description: "Trusted local roofing contractor. Fast emergency service, honest estimates, fully insured.", + images: ["https://navarrofamilyroofing.com/og-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}