2026-05-12 01:04:17 -05:00
|
|
|
import { Outlet } from 'react-router-dom'
|
|
|
|
|
import Header from './components/layout/Header.jsx'
|
|
|
|
|
import Footer from './components/layout/Footer.jsx'
|
2026-05-17 21:37:42 -05:00
|
|
|
import ScrollToTop from './components/ScrollToTop.jsx'
|
2026-05-13 00:29:45 -05:00
|
|
|
import './index.css'
|
2026-05-12 01:04:17 -05:00
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex flex-col font-sans bg-background text-text">
|
2026-05-17 21:37:42 -05:00
|
|
|
<ScrollToTop />
|
2026-05-12 01:04:17 -05:00
|
|
|
<Header />
|
|
|
|
|
<main className="flex-1">
|
|
|
|
|
<Outlet />
|
|
|
|
|
</main>
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-13 22:07:35 -05:00
|
|
|
export default App
|