MCPcopy
hub / github.com/adrianhajdin/project_3D_developer_portfolio / App

Function App

src/App.jsx:5–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import { About, Contact, Experience, Feedbacks, Hero, Navbar, Tech, Works, StarsCanvas } from "./components";
4
5const 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
27export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected