From fbd3245ac7e948795647ac7dfbfda6029806c226 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:08:51 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9db27a3..a72fb1a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -49,7 +49,7 @@ const AboutPage = () => { description="Local Service You Can Trust" subdescription="Serving your community with expertise and professionalism" icon={Star} - imageSrc="http://img.b2bpic.net/free-photo/man-working-wood-engraving-workshop_23-2149185404.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-working-wood-engraving-workshop_23-2149185404.jpg?_wi=3" imageAlt="professional mechanic portrait work" mediaAnimation="slide-up" useInvertedBackground={false} @@ -67,7 +67,7 @@ const AboutPage = () => { description: "Years of proven expertise in repairing and maintaining all types of garden and agricultural equipment.", imageSrc: - "http://img.b2bpic.net/free-photo/manager-overseeing-industry-40-industrial-plant-workers-using-cad-software_482257-126860.jpg", + "http://img.b2bpic.net/free-photo/manager-overseeing-industry-40-industrial-plant-workers-using-cad-software_482257-126860.jpg?_wi=2", imageAlt: "Expert technician with machinery", }, { @@ -76,7 +76,7 @@ const AboutPage = () => { description: "We deliver consistent, high-quality repairs that keep your equipment running smoothly season after season.", imageSrc: - "http://img.b2bpic.net/free-photo/smart-factory-engineering-team-colleagues-implement-automated-workflows_482257-126855.jpg", + "http://img.b2bpic.net/free-photo/smart-factory-engineering-team-colleagues-implement-automated-workflows_482257-126855.jpg?_wi=2", imageAlt: "Professional service quality", }, { @@ -85,7 +85,7 @@ const AboutPage = () => { description: "Quick turnaround times don't mean cutting corners. We prioritize both speed and quality in every repair.", imageSrc: - "http://img.b2bpic.net/free-photo/facility-supervisor-suit-monitoring-solar-panel-production-line_482257-126102.jpg", + "http://img.b2bpic.net/free-photo/facility-supervisor-suit-monitoring-solar-panel-production-line_482257-126102.jpg?_wi=2", imageAlt: "Quick efficient repair service", }, { @@ -94,7 +94,7 @@ const AboutPage = () => { description: "We treat each customer and repair as unique, providing personalized attention and solutions tailored to your needs.", imageSrc: - "http://img.b2bpic.net/free-photo/front-view-woman-working-as-economist_23-2150251723.jpg", + "http://img.b2bpic.net/free-photo/front-view-woman-working-as-economist_23-2150251723.jpg?_wi=2", imageAlt: "Customer-focused service approach", }, { @@ -103,7 +103,7 @@ const AboutPage = () => { description: "Transparent, competitive pricing with no hidden fees. You get excellent value for every repair dollar spent.", imageSrc: - "http://img.b2bpic.net/free-photo/smiling-financial-advisor-establishing-emergency-fund-clients-using-laptop_482257-115629.jpg", + "http://img.b2bpic.net/free-photo/smiling-financial-advisor-establishing-emergency-fund-clients-using-laptop_482257-115629.jpg?_wi=2", imageAlt: "Fair and transparent pricing", }, ]} -- 2.49.1 From 1d4604954dd83dc11735c3671dc61d4410574b08 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:08:51 +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 282ff27..b6bca1c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "TreeTech - Garden Maintenance & Machine Repair Services", + description: "Professional garden maintenance and machinery repair for agricultural, forestry, and garden equipment. Fast, reliable local service. Call 0468477260 for a quote.", + keywords: "garden maintenance, garden machine repair, chainsaw repair, lawn mower repair, agricultural machinery repair, forestry equipment repair, local machinery service", + metadataBase: new URL("https://treetech.local"), + alternates: { + canonical: "https://treetech.local", + }, + openGraph: { + title: "TreeTech - Garden Maintenance & Machine Repair", + description: "Reliable garden maintenance and professional machinery repair services. Fast turnaround, fair pricing.", + url: "https://treetech.local", + siteName: "TreeTech", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/people-helping-neighbors-with-grass-lawn_23-2149139731.jpg", + alt: "TreeTech Professional Machinery Repair Service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TreeTech - Garden & Machinery Repair", + description: "Professional repairs you can trust. Garden, agricultural, and forestry equipment specialists.", + images: ["http://img.b2bpic.net/free-photo/people-helping-neighbors-with-grass-lawn_23-2149139731.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}