ShrimpDelightSite/app/components/seafood-delights/seafood-delights.tsx
2026-07-11 16:25:45 -06:00

17 lines
610 B
XML

import SeafoodButton from "./seafood-button";
export default function SeafoodDelights() {
return (
<section className="shrimp-info w-full bg-cherry-shrimp py-[10px] lg:px-25 px-5">
<div className="text-space-shrimp-blue text-center">
<p className="font-bold">
We are Shrimp Squad and we make things.
</p>
There&apos;s no project we can&apos;t mantis punch. Shrimply
take a look at what we&apos;re known for.
</div>
<SeafoodButton />
</section>
);
}