Files
shop/pages/impressum.vue
Michael Czechowski 44107c0734
Some checks failed
Build and publish / build (push) Failing after 19s
feat: extract shop from mp/shop — initial libreshop/shop
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.
2026-04-29 17:48:56 +02:00

16 lines
426 B
Vue

<template>
<main class="pb-20">
<PageHero title="Impressum" subtitle="Rechtliche Informationen" />
<PageSection :content="IMPRESSUM_CONTENT" />
</main>
</template>
<script setup lang="ts">
import { IMPRESSUM_CONTENT } from "~/composables/usePageContent";
useSeoMeta({
title: "Impressum | MUELLERPRINTS",
description: "Impressum und rechtliche Informationen von MUELLERPRINTS, Max Müller, Stuttgart.",
});
</script>