import { BrowserRouter, Routes, Route, Link } from 'react-router-dom' import { lazy, Suspense } from 'react' import Layout from './components/Layout' import Loading from './components/Loading' import ErrorBoundary from './components/ErrorBoundary' import { BRAND_PRIMARY } from './config' const Home = lazy(() => import('./pages/Home')) const About = lazy(() => import('./pages/About')) const Services = lazy(() => import('./pages/Services')) const ServiceDetail = lazy(() => import('./pages/ServiceDetail')) const Project = lazy(() => import('./pages/Project')) const Contact = lazy(() => import('./pages/Contact')) function NotFound() { return (

404 — Page Not Found

The page you're looking for doesn't exist.

← Back to Home
) } export default function App() { return ( }> }> } /> } /> } /> } /> } /> } /> } /> ) }