21 lines
491 B
React
21 lines
491 B
React
|
|
import { Outlet } from 'react-router-dom'
|
||
|
|
import Header from './components/layout/Header.jsx'
|
||
|
|
import Footer from './components/layout/Footer.jsx'
|
||
|
|
import MobileNav from './components/layout/MobileNav.jsx'
|
||
|
|
import './App.css'
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen flex flex-col font-sans bg-background text-text">
|
||
|
|
<Header />
|
||
|
|
<MobileNav />
|
||
|
|
<main className="flex-1">
|
||
|
|
<Outlet />
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App
|