diff --git a/pages/index.tsx b/pages/index.tsx index c830131..6cde354 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,4 +1,5 @@ import type {NextPage} from 'next'; +import Image from "next/image"; import NavBar from "../components/navbar"; import {Footer} from "../components/footer" @@ -6,13 +7,20 @@ const Home: NextPage = () => { return (
- +
{/* MAIN BANNER SECTION BELOW */} -
- +
+ Dark background splash screen
- + {/*
diff --git a/tailwind.config.js b/tailwind.config.js index 266156b..1010358 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -25,6 +25,10 @@ module.exports = { }, }, display: ['dark'], + backgroundImage: { + 'splashDark': "url('/splashDarkFinal.jpg')", + 'splashLight': "url('/splashLightFinal.jpg')", + }, }, }, plugins: [],