Skip to content

Commit

Permalink
improve landing page look
Browse files Browse the repository at this point in the history
  • Loading branch information
jones58 committed Sep 26, 2024
1 parent 9ff7ff3 commit 90596cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import VisitedCount from "../components/visitedCount.tsx";

export function Footer() {
return (
<div className="whitebg w-full text-2xl flex flex-col justify-center sm:justify-right space-x-4 py-5 text-center sm:text-left fixed bottom-0 z-50">
<div className="w-full text-2xl flex flex-col justify-center sm:justify-right space-x-4 py-5 text-center sm:text-left fixed bottom-0 z-50">
<VisitedCount></VisitedCount>
</div>
);
Expand Down
8 changes: 4 additions & 4 deletions src/components/landingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const LandingPage: React.FC = () => {
}

return (
<div className="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-10 landing-page">
<div className=" p-10 rounded-lg shadow-xl max-w-xl">
<h1>Welcome to the London Brutalist Map!</h1>
<div className="fixed inset-0 bg-black text-white flex items-center justify-center z-10 landing-page h-screen">
<div className="p-10 rounded-lg shadow-xl max-w-xl">
<h1 className="mt-5">Welcome to the London Brutalist Map!</h1>
<p>
This site serves as a guide to London's Brutalist
architecture, allowing you to learn about, and track visits
Expand Down Expand Up @@ -59,7 +59,7 @@ const LandingPage: React.FC = () => {
</li>
<button
onClick={handleClose}
className="bg-gray-900 hover:bg-black text-white p-5 w-full rounded-lg mt-8 "
className="bg-white hover:bg-neutral-600 text-black p-5 w-full rounded-lg mt-8 "
>
Get Started
</button>
Expand Down

0 comments on commit 90596cb

Please sign in to comment.