16 lines
377 B
React
16 lines
377 B
React
import PageLayout from "../components/PageLayout";
|
|
|
|
export default function Shop() {
|
|
return (
|
|
<PageLayout>
|
|
<main className="px-16 grow w-full">
|
|
<div className="flex flex-row text-white">
|
|
<div className="text-4xl flex-col">
|
|
<h1 className="uppercase">fish fish</h1>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</PageLayout>
|
|
);
|
|
}
|