diff --git a/src/components/pages/Front.page.jsx b/src/components/pages/Front.page.jsx
index b5b0eb9..67fce02 100644
--- a/src/components/pages/Front.page.jsx
+++ b/src/components/pages/Front.page.jsx
@@ -12,6 +12,7 @@ import AppearText from '../text/AppearText';
import Cdiv from '../core/Cdiv';
import FadeComponent from '../core/FadeComponent';
import Introduction from '../sections/Introduction';
+import Skills from '../sections/Skills';
//============================================================
// Component
@@ -66,12 +67,12 @@ const FrontPage = () => {
+
>
diff --git a/src/components/sections/Introduction.jsx b/src/components/sections/Introduction.jsx
index 38c5175..603ab7d 100644
--- a/src/components/sections/Introduction.jsx
+++ b/src/components/sections/Introduction.jsx
@@ -1,16 +1,8 @@
-//============================================================
-// Essential Imports
-//============================================================
-
import React from 'react';
-//============================================================
-// Component
-//============================================================
-
const Introduction = () => {
return (
-
+
Hi, I'm John
@@ -22,12 +14,6 @@ const Introduction = () => {
a Linux Enthusiat and I run Garuda Linux as my main OS on all my machines.
-
-

-
);
diff --git a/src/components/sections/Skills.jsx b/src/components/sections/Skills.jsx
new file mode 100644
index 0000000..4d2c89b
--- /dev/null
+++ b/src/components/sections/Skills.jsx
@@ -0,0 +1,17 @@
+import React from 'react';
+
+const Skills = () => {
+ return (
+
+ );
+};
+export default Skills;