Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjm66 committed Feb 21, 2025
1 parent a194a2a commit 005f594
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
--color-ezred: #d34848;
--color-ezblue: #5296f0;
--color-ezgray: #adadad;
}
}

19 changes: 17 additions & 2 deletions src/components/Homepage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@ const Homepage = (): ReactElement => {
return (
<div id="home" className="absolute top-0 w-screen h-screen flex justify-center items-center">
<img src={bg} alt='background' className="absolute top-0 w-screen h-screen object-cover object-bottom blur-md z-0"/>
<div className="flex justify-center z-10">
<h1 className="text-9xll font-bold">The logging solution for pilots</h1>
<div className="flex flex-col justify-center z-10">
<h1 className="text-9xll font-bold">The <span className="text-ezblue">ez</span> logging solution for pilots and instructors</h1>

<div className="text-center flex justify-center items-center flex-col m-5">
<h2 className="text-3xl py-1 border-y-1 w-72">Logbook Validation</h2>
<h2 className="text-3xl py-1 border-y-1 w-72">Currency Reports</h2>
<h2 className="text-3xl py-1 border-y-1 w-72">Instructor Signoffs</h2>


<div className='mt-10'>
<Link to='/login' className='bg-ezblue text-white no-underline'>
Get Started
</Link>
</div>
</div>


</div>
</div>

Expand Down

0 comments on commit 005f594

Please sign in to comment.