feat: extract shop from mp/shop — initial libreshop/shop
Some checks failed
Build and publish / build (push) Failing after 19s

Source moved verbatim from mp/shop/ on 2026-04-29; mp was the first
concrete adapter consuming the libreshop toolkit. Builds and publishes
git.librete.ch/libreshop/shop on every main / v* push via the standard
.gitea/workflows/build.yml shared across libreshop components.
This commit is contained in:
Michael Czechowski
2026-04-29 17:48:56 +02:00
commit 44107c0734
134 changed files with 19521 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<template>
<NuxtLink
:to="path"
class="px-4 py-0.5 rounded-full font-medium text-lg text-black transition-all duration-200 flex flex-col justify-center hover:bg-gray-900 hover:text-white"
active-class="!bg-gray-900 !text-white"
aria-label="Navigation"
:title="description ?? label"
>
{{ label }}
</NuxtLink>
</template>
<script setup lang="ts">
defineProps<{
path?: string;
to?: string;
label: string;
description?: string;
isDarkMode?: boolean;
}>();
</script>