diff --git a/src/App.jsx b/src/App.jsx
index f67355a..fff1480 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,35 +1,22 @@
-import { useState } from 'react'
-import reactLogo from './assets/react.svg'
-import viteLogo from '/vite.svg'
import './App.css'
+import Home from './components/Home.jsx'
+import Experiences from './components/Experiences.jsx'
+import Projects from './components/Projects.jsx'
+import Skills from './components/Skills.jsx'
+import Footer from './components/Footer.jsx'
+
function App() {
- const [count, setCount] = useState(0)
-
- return (
- <>
-
- Vite + React
-
-
-
- Edit src/App.jsx and save to test HMR
-
-
-
- Click on the Vite and React logos to learn more
-
- >
- )
+ return (
+
+ )
}
+
export default App
diff --git a/src/components/Experiences.jsx b/src/components/Experiences.jsx
new file mode 100644
index 0000000..2047cf3
--- /dev/null
+++ b/src/components/Experiences.jsx
@@ -0,0 +1,10 @@
+function Experiences() {
+ return (
+
+ )
+}
+
+
+export default Experiences
\ No newline at end of file
diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx
new file mode 100644
index 0000000..2e88d57
--- /dev/null
+++ b/src/components/Footer.jsx
@@ -0,0 +1,10 @@
+function Footer() {
+ return (
+
+ )
+}
+
+
+export default Footer
\ No newline at end of file
diff --git a/src/components/Home.jsx b/src/components/Home.jsx
new file mode 100644
index 0000000..ee109e6
--- /dev/null
+++ b/src/components/Home.jsx
@@ -0,0 +1,10 @@
+function Home() {
+ return (
+
+ )
+}
+
+
+export default Home
\ No newline at end of file
diff --git a/src/components/Projects.jsx b/src/components/Projects.jsx
new file mode 100644
index 0000000..5cea386
--- /dev/null
+++ b/src/components/Projects.jsx
@@ -0,0 +1,10 @@
+function Projects() {
+ return (
+
+ )
+}
+
+
+export default Projects
\ No newline at end of file
diff --git a/src/components/Skills.jsx b/src/components/Skills.jsx
new file mode 100644
index 0000000..a1e5cf1
--- /dev/null
+++ b/src/components/Skills.jsx
@@ -0,0 +1,10 @@
+function Skills() {
+ return (
+
+ )
+}
+
+
+export default Skills
\ No newline at end of file