18 lines
544 B
TypeScript
18 lines
544 B
TypeScript
import Image from "next/image";
|
|
import heroShrimp from "./hero-shrimp.png";
|
|
|
|
export default function HeroShrimp() {
|
|
return (
|
|
<section className="w-full h-auto flex items-center justify-center w-full bg-apricot-shrimp">
|
|
<Image
|
|
loading="eager"
|
|
src={heroShrimp}
|
|
alt="photo of three gold shrimp on rocks underwater"
|
|
width={2400}
|
|
height={742}
|
|
className="w-full h-auto"
|
|
/>
|
|
</section>
|
|
);
|
|
}
|