17 lines
595 B
TypeScript
17 lines
595 B
TypeScript
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's no project we can't mantis punch. Shrimply take a look
|
|
at what we're known for.
|
|
</div>
|
|
<SeafoodButton />
|
|
</section>
|
|
);
|
|
}
|