From 3a8f846d518814b4a8aca1ce032db13cc19d686d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 00:30:51 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 02b56c3..9ee91e7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -68,7 +68,7 @@ export default function AboutPage() { description: "To provide Edmonton homeowners with honest, premium roofing services delivered by a professional, dedicated team that treats your home with respect and care.", tags: ["Honest", "Quality"], - imageSrc: "http://img.b2bpic.net/free-photo/excited-work-team-giving-high-five-celebrating-shared-achievement_1163-4796.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/excited-work-team-giving-high-five-celebrating-shared-achievement_1163-4796.jpg?_wi=2", imageAlt: "company mission statement vision graphic", }, { @@ -78,7 +78,7 @@ export default function AboutPage() { description: "No shortcuts, no subcontractors, no surprises. Just quality materials, efficient installation, and leaving every property cleaner than we found it.", tags: ["Integrity", "Excellence"], - imageSrc: "http://img.b2bpic.net/free-photo/teamwork-concept-with-hands_23-2147702083.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/teamwork-concept-with-hands_23-2147702083.jpg?_wi=2", imageAlt: "core values integrity honest business", }, ]} -- 2.49.1 From 47229e51d3ac2f28b9b17d81ec9536ff1e875f9d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 00:30:52 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..d413923 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,39 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Brown's Roofing Edmonton | 100+ 5-Star Reviews | Expert Installation", + description: "Edmonton's most trusted roofing company. 100+ 5-star reviews. One-day installations. Owner-operated, fully insured. Free quote today.", + keywords: "roofing Edmonton, roof replacement Edmonton, best roofing contractor Edmonton, roof repair Edmonton, asphalt shingles, storm damage repair", + metadataBase: new URL("https://brownsroofing.ca"), + alternates: { + canonical: "https://brownsroofing.ca", + }, + openGraph: { + title: "Brown's Roofing Edmonton | Premium Roofing Services", + description: "Expert roof replacement, repair, and inspection in Edmonton. 100+ 5-star reviews, one-day installations, owner-operated.", + url: "https://brownsroofing.ca", + siteName: "Brown's Roofing & Exteriors Inc.", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-men-working-roof-together_23-2149343670.jpg", + alt: "Professional roofing installation by Brown's Roofing", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Brown's Roofing Edmonton | Expert Roofing Services", + description: "100+ 5-star reviews. One-day installations. Owner-operated. Free quote.", + images: ["http://img.b2bpic.net/free-photo/medium-shot-men-working-roof-together_23-2149343670.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}