add basic footer

This commit is contained in:
Brandon Egger 2023-04-10 17:18:28 -05:00
parent 3f316c2bd3
commit 7e4ad99bae
3 changed files with 27 additions and 0 deletions

BIN
public/IOWA-gold-text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

25
src/components/Footer.tsx Normal file
View File

@ -0,0 +1,25 @@
import { type NextPage } from "next/types";
import Image from 'next/image';
const Footer: NextPage = () => {
return (
<div className="w-full mt-12">
{/** yellow stripe */}
<div className="bg-yellow-400 border-t-[1px] border-neutral-400 p-[4px]"></div>
{/** Main footer area */}
<div className="p-4 bg-neutral-800 flex-row">
<div className="flex-col">
<Image alt="University of Iowa logo" width={128} height={64} src="/IOWA-gold-text.png" />
<div className="px-2 text-neutral-100">
<p className="text-yellow-300 italic">Wendell Johnson Speech and Hearing Center</p>
<p>250 Hawkins Dr</p>
<p>Iowa City, IA 52242</p>
</div>
</div>
</div>
</div>
)
}
export default Footer;

View File

@ -6,6 +6,7 @@ import { api } from "~/utils/api";
import "~/styles/globals.css";
import Header from "~/components/Header";
import Footer from "~/components/Footer";
const MyApp: AppType<{ session: Session | null }> = ({
Component,
@ -15,6 +16,7 @@ const MyApp: AppType<{ session: Session | null }> = ({
<SessionProvider session={session}>
<Header />
<Component {...pageProps} />
<Footer />
</SessionProvider>
);
};