From 4d6566603de5f351b0acdcd3a324368f9e316c42 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 21:33:59 +0000 Subject: [PATCH 1/3] 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 2ffa320..a0510f3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -107,19 +107,19 @@ export default function AboutPage() { { title: "Dashboard Overview", description: "Get a real-time snapshot of all repair tickets, revenue, and team performance. Make informed decisions with comprehensive analytics.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/modern-mobile-phone-repair-management-da-1773696771622-2f1dc37f.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/modern-mobile-phone-repair-management-da-1773696771622-2f1dc37f.png?_wi=2", imageAlt: "Admin dashboard overview", }, { title: "Team Management", description: "Add, remove, and manage technicians. Track individual performance metrics and identify your top performers for recognition and advancement.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/technician-management-system-interface-s-1773696771628-a042f961.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/technician-management-system-interface-s-1773696771628-a042f961.png?_wi=2", imageAlt: "Technician management interface", }, { title: "Financial Reports", description: "Generate detailed revenue reports, track expenses, and understand your business financials. Multi-currency and payment method support included.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/advanced-analytics-dashboard-with-multip-1773696771053-ff314350.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/advanced-analytics-dashboard-with-multip-1773696771053-ff314350.png?_wi=2", imageAlt: "Financial analytics dashboard", }, ]} @@ -146,7 +146,7 @@ export default function AboutPage() { name: "James Kariuki", role: "Repair Shop Owner", testimonial: "MobiFixHub transformed how we manage repairs. Our customers love the tracking feature and we've seen a 45% increase in repeat business.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770802-1eeccf62.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770802-1eeccf62.png?_wi=2", imageAlt: "James Kariuki", }, { @@ -154,7 +154,7 @@ export default function AboutPage() { name: "Patricia Nakamura", role: "Shop Owner", testimonial: "Customer satisfaction ratings are up, technician productivity is up, and best of all, our profit margins have improved significantly.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770250-591e1472.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770250-591e1472.png?_wi=2", imageAlt: "Patricia Nakamura", }, { @@ -162,7 +162,7 @@ export default function AboutPage() { name: "Michael Osei", role: "Operations Manager", testimonial: "Setup was quick and the support team is fantastic. We're now handling 3x more repairs with the same staff. Highly recommended.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770207-71cfbc80.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/professional-headshot-of-an-east-african-1773696770207-71cfbc80.png?_wi=2", imageAlt: "Michael Osei", }, ]} From 3c86615ca7d17d576a7eac13f9dda0f7603a5805 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 21:34:00 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..ac0c658 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ 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: "MobiFixHub - Mobile Phone Repair Management Platform", + description: "Streamline your mobile repair business with MobiFixHub. Manage customer requests, track payments, assign technicians, and grow with comprehensive analytics.", + keywords: "mobile repair management, repair software, business management platform, technician assignment, payment processing, repair tracking", + metadataBase: new URL("https://mobifixhub.com"), + alternates: { + canonical: "https://mobifixhub.com", + }, + openGraph: { + title: "MobiFixHub - Mobile Repair Management Platform", + description: "Streamline your mobile repair business with MobiFixHub. All-in-one platform for customers, technicians, and admins.", + type: "website", + url: "https://mobifixhub.com", + siteName: "MobiFixHub", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/modern-mobile-phone-repair-management-da-1773696771622-2f1dc37f.png", + alt: "MobiFixHub platform dashboard", + width: 1200, + height: 630, + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "MobiFixHub - Mobile Repair Management", + description: "Manage repairs, payments, and technicians in one platform", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B2oQzYCe8NYa18foPHZqhuQp0g/modern-mobile-phone-repair-management-da-1773696771622-2f1dc37f.png"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}