add about page header image

This commit is contained in:
Brandon 2023-04-12 00:03:03 -05:00
parent 21898d7cb7
commit c8e9674c4a
2 changed files with 17 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -1,11 +1,25 @@
import { ArrowUpRightIcon } from "@heroicons/react/24/outline";
import Link from "next/link";
import { type NextPage } from "next/types";
const About: NextPage = () => {
return (
<div>
</div>
<main>
<div style={{
backgroundImage: `url("/backdrops/uiowa-aerial.jpeg")`,
backgroundPosition: `center`,
}} className="h-96">
<div style={{
WebkitBackdropFilter: `blur(5px) contrast(50%)`,
backdropFilter: `blur(5px) contrast(50%)`,
}} className="h-full w-full grid place-items-center">
<div className="space-y-8">
<h1 className="mx-auto text-center font-extrabold text-5xl max-w-lg text-black">About Us</h1>
</div>
</div>
</div>
</main>
);
};