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
3 changes: 3 additions & 0 deletions project-app/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": ["next/babel","next/core-web-vitals"]

}


19 changes: 11 additions & 8 deletions project-app/components/Landing/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@ import NavButton from './NavButton/NavButton.jsx'
const LandingBanner = () => {

return (
<div className='bg-hero-background bg-contain bg-no-repeat .flex flex-col '>
<div id="home" className='bg-hero-background min-h-screen hero-image bg-right-bottom bg-cover flex mt-[4rem]'>

<div className='grid h-screen place-items-center'>
<h1 className = 'text-3xl'>Project Clean-Up</h1>
</div>

<div className='md:w-80 md:space-x-5 p-3 inset-9 md:-mt-96'>
<NavButton buttonText="Button One"/>
<NavButton buttonText="Button Two"/>
<div class="relative container mx-auto p-4 flex items-center justify-center z-10 h-48 w-2/4 mt-[10rem]" >
<div >
<div class="flex flex-col justify-center items-center lg:items-start text-center">
<h1 class="text-6xl font-semibold text-gray-900 leading-none align-center">Project Clean-Up</h1>
<div class="flex flex-row items-center justify-between space-x-8 md:ml-24">
<NavButton buttonText="Button One"/>
<NavButton buttonText="Button Two"/>
</div>
</div>
</div>
</div>
</div>
);

}
Expand Down
2 changes: 1 addition & 1 deletion project-app/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const Navbar = () => {
);

return (
<div className="fixed">
<div className="fixed z-20">
<div className=" flex justify-between w-[100vw] bg-[#004F54] text-[white] ml-[0px] px-[2em] py-[2em]">
<div>Logo</div>
<Link href="#home">
Expand Down
4 changes: 4 additions & 0 deletions project-app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ body{
img {
border: none;
}
.hero-background{
width: 100%;
height:auto
}

1 change: 1 addition & 0 deletions project-app/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {
extend: {
backgroundImage: {
'hero-background': "url('/hero-background.png')",

}
},
},
Expand Down