import { A } from '@solidjs/router'; const roleCards = [ { title: 'Customer', description: 'Find verified professionals in Chennai and submit exact requirements by category.', cta: '/onboarding?schemaId=customer_onboarding_v1', badge: 'Hire', }, { title: 'Professional', description: 'Create your profile, upload portfolio, and complete identity verification.', cta: '/onboarding?schemaId=professional_onboarding_v1', badge: 'Offer Services', }, { title: 'Company', description: 'Set hiring preferences and verify your business documents for trusted recruitment.', cta: '/onboarding?schemaId=company_onboarding_v1', badge: 'Recruit', }, { title: 'Jobseeker', description: 'Share your profile, experience and documents once, then continue from dashboard.', cta: '/onboarding?schemaId=jobseeker_onboarding_v1', badge: 'Apply', }, ]; const professionalCategories = [ 'Photographer', 'Makeup Artist', 'Tutor', 'Developer', 'Video Editor', 'Graphic Designer', 'Social Media Manager', 'Fitness Trainer', 'Catering Services', ]; export default function Home() { return (

Launch City: Chennai, India

Verified Hiring and Services, Powered by Runtime Config

NXTGAUGE connects customers, professionals, companies, and jobseekers with role-based onboarding, document verification, and dashboard-ready profiles.

Professional Categories

{professionalCategories.map((item) => ( {item} ))}

Customer onboarding Step 1 starts with selecting one of these service categories.

Choose Your Flow

Each role stays separate and gets its own onboarding questions from runtime schema.

{roleCards.map((card) => ( ))}

Verification First

Document steps are runtime controlled, with PDF-only validation for identity/business verification and 2MB limits.

Portfolio Ready

Professional onboarding supports image portfolio uploads up to 6 files, ready for 3x2 dashboard preview.

No Hardcoded Fallback

Forms load from runtime schemas. Admin-published config is picked first, then seeded runtime config for local demo.

); }