diff --git a/project-app/.eslintrc.json b/project-app/.eslintrc.json index 0ad09f5..1d4e9ab 100644 --- a/project-app/.eslintrc.json +++ b/project-app/.eslintrc.json @@ -1,3 +1,6 @@ { "extends": ["next/babel","next/core-web-vitals"] + } + + diff --git a/project-app/components/Landing/Landing.jsx b/project-app/components/Landing/Landing.jsx index 184a10f..f78fa36 100644 --- a/project-app/components/Landing/Landing.jsx +++ b/project-app/components/Landing/Landing.jsx @@ -3,17 +3,20 @@ import NavButton from './NavButton/NavButton.jsx' const LandingBanner = () => { return ( -
+
-
-

Project Clean-Up

-
- -
- - +
+
+
+

Project Clean-Up

+
+ + +
+
+
); } diff --git a/project-app/components/Navbar/Navbar.jsx b/project-app/components/Navbar/Navbar.jsx index 3e89b91..dc42bd5 100644 --- a/project-app/components/Navbar/Navbar.jsx +++ b/project-app/components/Navbar/Navbar.jsx @@ -54,7 +54,7 @@ const Navbar = () => { ); return ( -
+
Logo
diff --git a/project-app/styles/globals.css b/project-app/styles/globals.css index f9750d4..7e8f660 100644 --- a/project-app/styles/globals.css +++ b/project-app/styles/globals.css @@ -18,4 +18,8 @@ body{ img { border: none; } +.hero-background{ + width: 100%; + height:auto +} diff --git a/project-app/tailwind.config.js b/project-app/tailwind.config.js index 19cfc68..f4cb967 100644 --- a/project-app/tailwind.config.js +++ b/project-app/tailwind.config.js @@ -8,6 +8,7 @@ module.exports = { extend: { backgroundImage: { 'hero-background': "url('/hero-background.png')", + } }, },