import React from 'react'; import type { ReactElement } from 'react'; import NextHead from 'next/head'; import { mdiShieldCheck, mdiTools, mdiFlash, mdiInformationOutline, mdiBriefcaseAccountOutline, mdiAccountGroupOutline } from '@mdi/js'; import BaseIcon from '../../components/BaseIcon'; import LayoutGuest from '../../layouts/Guest'; import { getPageTitle } from '../../config'; export default function AboutPage() { const projectName = 'Fix-It-Local'; return (
{getPageTitle('About Us')} {/* Hero Section */}

Connecting Local Communities

{projectName} is a modern service directory built on trust, transparency, and AI-powered efficiency. We bridge the gap between quality service professionals and the customers who need them.

{/* Our Mission */}
Our Mission

Empowering Quality Businesses & Serving Homeowners

We started {projectName} because we saw how difficult it was for homeowners to find reliable, verified help, and how hard it was for skilled professionals to stand out in a sea of unverified listings.

Our platform uses advanced verification evidence and AI-driven matching to ensure that every connection made is based on quality, reliability, and fair pricing.

Trust First

Every business is verified with real evidence.

AI Efficiency

Find the right pro in seconds, not hours.

Quality Guaranteed

Focusing on high-rated local professionals.

{/* How We Help */}

How We Help

{/* For Businesses */}

For Businesses

  • Build trust with verified badges
  • Receive high-quality, matched leads
  • Showcase reviews and past work
  • No lead-spam or irrelevant requests

"We help local professionals focus on what they do best, while we handle the discovery and matching."

{/* For Customers */}

For Customers

  • Find verified, background-checked pros
  • Transparent pricing and job histories
  • Free and fast matching with AI
  • Secure communication and history

"Find the perfect help for your home without the stress of unverified listings or endless phone calls."

{/* The Process */}

The Process

{[ { title: 'Search', desc: 'Find categories or specific services.', icon: mdiTools }, { title: 'Request', desc: 'Describe your job needs in detail.', icon: mdiInformationOutline }, { title: 'Match', desc: 'AI finds the best pro for you.', icon: mdiFlash }, { title: 'Resolve', desc: 'Job completed with transparency.', icon: mdiShieldCheck } ].map((step, i) => (

{i+1}. {step.title}

{step.desc}

))}
); } AboutPage.getLayout = function getLayout(page: ReactElement) { return {page}; };