add(frontend) pages shop & about

This commit is contained in:
2026-06-06 08:37:53 +03:00
parent 59aea98eff
commit 1f76232d7b
3 changed files with 48 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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>
);
}