Initialization of the 7 sections
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
function Experiences() {
|
||||
return (
|
||||
<section id="experiences-section">
|
||||
<h1>Experiences</h1>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export default Experiences
|
||||
@@ -0,0 +1,10 @@
|
||||
function Footer() {
|
||||
return (
|
||||
<section id="footer-section">
|
||||
<p>Footer</p>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export default Footer
|
||||
@@ -0,0 +1,10 @@
|
||||
function Home() {
|
||||
return (
|
||||
<section id="home-section">
|
||||
<h1>Home</h1>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export default Home
|
||||
@@ -0,0 +1,10 @@
|
||||
function Projects() {
|
||||
return (
|
||||
<section id="projects-section">
|
||||
<h1>Projects</h1>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export default Projects
|
||||
@@ -0,0 +1,10 @@
|
||||
function Skills() {
|
||||
return (
|
||||
<section id="skills-section">
|
||||
<h1>Skills</h1>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
export default Skills
|
||||
Reference in New Issue
Block a user