Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project-app/components/Landing/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const LandingBanner = () => {
<div className="relative container mx-auto p-4 flex items-center justify-center z-10 h-48 w-2/4 mt-[10rem]">
<div>
<div className="flex flex-col justify-center items-center lg:items-start text-center">
<h1 className="text-6xl font-semibold text-gray-900 leading-none align-center">
<h1 className="text-6xl font-semibold text-gray-900 leading-none align-center mt-[5em]">
Project Clean-Up
</h1>
<div className="flex flex-row items-center justify-between space-x-8 md:ml-24">
Expand Down
1 change: 1 addition & 0 deletions project-app/components/Landing/NavButton/NavButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React from "react";

function NavButton( {buttonText}) {
return (

<button className = "bg-[#FF9505] hover:bg-orange-700 text-white font-bold py-2 px-4 rounded shadow-2xl ">
{buttonText}
</button>
Expand Down
6 changes: 3 additions & 3 deletions project-app/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ const MapWithNoSSR = dynamic(() => import("../components/Map/Map.jsx"), {

export default function Home() {
return (
<>
<div className="bg-[#E6E5E4]">
<Head>
<title>Project Clean-Up|Home</title>
<title>Project Clean-Up | Home</title>
</Head>
<div className="overflow-hidden font-sans">
<Navbar />
Expand All @@ -36,6 +36,6 @@ export default function Home() {
<Weather />
<Footer />
</div>
</>
</div>
);
}