Spaces:
Sleeping
Sleeping
File size: 651 Bytes
36fcfee |
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 |
import React from 'react'
import Home from './pages/Home'
import Skills from './components/Skills'
import Navbar from './components/Navbar'
import About from './components/About'
import Footer from './components/Footer'
import Projects from './components/Projects'
import Contact from './components/Contact'
import CustomCursor from './utils/CursorAnimation'
export default function App() {
return (
<div className='font-sora scroll-smooth overflow-x-hidden'>
<CustomCursor/>
<Navbar />
<Home />
<Skills />
<About />
<Projects />
<Contact />
<Footer />
</div>
)
}
|