add basic footer
This commit is contained in:
parent
3f316c2bd3
commit
7e4ad99bae
BIN
public/IOWA-gold-text.png
Normal file
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
25
src/components/Footer.tsx
Normal 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;
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user