-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathApp.js
More file actions
37 lines (35 loc) · 778 Bytes
/
App.js
File metadata and controls
37 lines (35 loc) · 778 Bytes
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
29
30
31
32
33
34
35
36
37
import Header from "./Components/Header";
import Footer from "./Components/Footer";
import Home from "./Pages/Home";
import About from "./Pages/About";
import Contact from "./Pages/Contact";
import Projects from "./Pages/Projects";
import Technologies from "./Pages/Technologies";
import Awards from "./Pages/Awards";
function App() {
return (
<div>
<Header />
<div id="home">
<Home />
</div>
<div id="about">
<About />
</div>
<div id="projects">
<Projects />
</div>
<div id="awards">
<Awards />
</div>
<div id="technologies">
<Technologies />
</div>
<div id="contact">
<Contact />
</div>
<Footer />
</div>
);
}
export default App;