feat: add kmenu icon for mobile

This commit is contained in:
Max Richter
2025-11-12 16:12:57 +01:00
parent 7ad08daf80
commit 7dda2dd60d
6 changed files with 24 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import { PageProps } from "$fresh/server.ts";
import { resources } from "@lib/resources.ts";
import { Link } from "@islands/Link.tsx";
import { Emoji } from "@components/Emoji.tsx";
import KMenuButton from "@islands/KMenuButton.tsx";
export default function MyLayout({ Component }: PageProps) {
return (
@@ -26,6 +27,7 @@ export default function MyLayout({ Component }: PageProps) {
<main class="py-5">
<Component />
</main>
<KMenuButton />
</div>
);
}