-
Notifications
You must be signed in to change notification settings - Fork 64
Description
// DriveWise 360 App (Mobile-Optimized React Web App) // This app covers all business units under the DriveWise 360 umbrella // Built to be hosted for free using platforms like Netlify or Vercel // Fully operable from a mobile browser
import React from 'react'; import { BrowserRouter as Router, Route, Routes, Link } from 'react-router-dom'; import { Button } from '@/components/ui/button';
function Home() { return (
DriveWise 360
Driving School Fleet Training Drivers With Disabilities License Finance Testing Station (Future)
); }
function DrivingSchool() { return (
Driving School
Book Driving Lessons
Learner’s License Assistance
License Codes A, B, EB, C, EC
); }
function FleetTraining() { return (
Fleet Training & Assessments
Professional driver assessments, evaluations, and company training modules.
); }
function DisabilityDrivers() { return (
Drivers With Disabilities
We assist with custom vehicle setups and tailored training for people with disabilities.
); }
function LicenseFinance() { return (
License Finance
Save up or pay off your driver’s license over time. Low-deposit options available.
); }
function TestingStation() { return (
Private Testing Station
COMING SOON: A trusted station with high fraud prevention and transparent testing.
); }
export default function App() { return ( <Route path="/driving-school"