//============================================================ // Essential Imports //============================================================ import React from 'react'; //============================================================ // Imported Components //============================================================ 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 //============================================================ const DELAY = 1000; const FrontPage = () => { return ( <>
); }; export default FrontPage;