Spaces:
Sleeping
Sleeping
File size: 647 Bytes
7edf946 52d6ced 7edf946 52d6ced 7edf946 52d6ced | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import { Routes, Route } from "react-router-dom"
import { Header } from "./components/Header"
import { Footer } from "./components/Footer"
import TargetCursor from "./components/TargetCursor"
import { HomePage } from "./pages/HomePage"
import { DocsPage } from "./pages/DocsPage"
function App() {
return (
<>
<TargetCursor
spinDuration={4}
hideDefaultCursor
parallaxOn
hoverDuration={0.2}
/>
<Header />
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/docs" element={<DocsPage />} />
</Routes>
<Footer />
</>
)
}
export default App
|