diff --git a/src/App.tsx b/src/App.tsx index 8ed905d..067750f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,16 +8,13 @@ import Navbar from './Components/Navbar'; import './App.scss'; import Footer from './Components/Footer/Footer'; +import OnePager from './Components/Test-Onepager/OnePager'; + const App: React.FC = () => { return (
- - } /> - } /> - } /> - } /> - +
); diff --git a/src/Components/About/About.tsx b/src/Components/About/About.tsx index 5d7444f..238e5fd 100644 --- a/src/Components/About/About.tsx +++ b/src/Components/About/About.tsx @@ -86,7 +86,7 @@ const About: React.FC = () => { I'm not hard to track down, but you can find me on{' '} diff --git a/src/Components/Test-Onepager/OnePager.tsx b/src/Components/Test-Onepager/OnePager.tsx new file mode 100644 index 0000000..afdef13 --- /dev/null +++ b/src/Components/Test-Onepager/OnePager.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import Hero from '../Home/Hero/Hero'; +import Projects from '../Projects/Projects'; +import Experience from '../Experience/Experience'; +import About from '../About/About'; + +const OnePager: React.FC = () => { + return ( +
+ + + + +
+ ); +}; + +export default OnePager; \ No newline at end of file