Initial Commit

This commit is contained in:
2021-12-14 19:09:03 +00:00
commit 0419c73f01
15 changed files with 13767 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
//============================================================
// Essential Imports
//============================================================
import React from 'react';
//============================================================
// Imported Components
//============================================================
import AppearText from '../text/AppearText';
//============================================================
// Component
//============================================================
const FrontPage = () => {
return (
<div className="w-full h-screen flex justify-center items-center bg-polar-night-400">
<div className="flex flex-col justify-center items-center">
<AppearText className="font-mono text-7xl text-frost-400" text="JOHN COSTA" delay={100} />
<AppearText className="font-mono text-5xl text-frost-200" text="DEVELOPER" delay={1200} />
</div>
</div>
);
};
export default FrontPage;