ShrimpDelightSite/app/components/hero-shrimp/hero-shrimp.tsx
2026-07-11 15:20:14 -06:00

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>
);
}