Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,7 +100,7 @@ export default function HomePage() {
|
||||
background={{ variant: "gradient-bars" }}
|
||||
mediaItems={[
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "MobiFixHub dashboard overview",
|
||||
},
|
||||
{
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
price: "Essential",
|
||||
rating: 5,
|
||||
reviewCount: "1,600+",
|
||||
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=1",
|
||||
imageAlt: "Technician management tools",
|
||||
},
|
||||
{
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
price: "Premium",
|
||||
rating: 5,
|
||||
reviewCount: "1,200+",
|
||||
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=1",
|
||||
imageAlt: "Advanced analytics dashboard",
|
||||
},
|
||||
{
|
||||
@@ -339,7 +339,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "James Kariuki",
|
||||
},
|
||||
{
|
||||
@@ -371,7 +371,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Michael Osei",
|
||||
},
|
||||
{
|
||||
@@ -379,7 +379,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Patricia Nakamura",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user