()
| 3 | import { About, Contact, Experience, Feedbacks, Hero, Navbar, Tech, Works, StarsCanvas } from "./components"; |
| 4 | |
| 5 | const App = () => { |
| 6 | return ( |
| 7 | <BrowserRouter> |
| 8 | <div className='relative z-0 bg-primary'> |
| 9 | <div className='bg-hero-pattern bg-cover bg-no-repeat bg-center'> |
| 10 | <Navbar /> |
| 11 | <Hero /> |
| 12 | </div> |
| 13 | <About /> |
| 14 | <Experience /> |
| 15 | <Tech /> |
| 16 | <Works /> |
| 17 | <Feedbacks /> |
| 18 | <div className='relative z-0'> |
| 19 | <Contact /> |
| 20 | <StarsCanvas /> |
| 21 | </div> |
| 22 | </div> |
| 23 | </BrowserRouter> |
| 24 | ); |
| 25 | } |
| 26 | |
| 27 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected