11 lines
391 B
Vue
11 lines
391 B
Vue
<!-- app/components/layout/AppFooter.vue - 全局页脚,只保留服务状态类信息 -->
|
||
<template>
|
||
<footer class="border-t bg-background">
|
||
<div
|
||
class="mx-auto flex w-full max-w-7xl flex-col gap-2 px-4 py-5 text-xs text-muted-foreground md:flex-row md:items-center md:justify-between md:px-6"
|
||
>
|
||
<span>OCS AI answer service</span>
|
||
</div>
|
||
</footer>
|
||
</template>
|