add about page header image
This commit is contained in:
parent
21898d7cb7
commit
c8e9674c4a
BIN
public/backdrops/uiowa-aerial.jpeg
Normal file
BIN
public/backdrops/uiowa-aerial.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
@ -1,11 +1,25 @@
|
|||||||
|
import { ArrowUpRightIcon } from "@heroicons/react/24/outline";
|
||||||
|
import Link from "next/link";
|
||||||
import { type NextPage } from "next/types";
|
import { type NextPage } from "next/types";
|
||||||
|
|
||||||
const About: NextPage = () => {
|
const About: NextPage = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<main>
|
||||||
|
<div style={{
|
||||||
</div>
|
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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user