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 = () => { + d="M0,192L120,202.7C240,213,480,235,720,240C960,245,1200,235,1320,229.3L1440,224L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z"> + 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 ( +
+
+
+

+ Skills +

+
+
+
+
+ ); +}; +export default Skills;