Files
inkreach-official-website/apps/website/app/components/AppFooter.vue
T
yeuimu 6c61a4e871 feat(deploy): production deployment setup and fixes
- Debian-based api image (bookworm-slim), docker/debian mirrors, prisma
  binaryTargets for openssl 3.0
- nginx: admin SPA under /admin, TLS via acme.sh (ZeroSSL) + auto-renewal
  cron, http->https redirect
- prisma: add origin_goods.delisted migration, sync missing schema
  (good_image/tag_font_color/good_tags), fix users.createdAt Timestamptz
- api: CORS wildcard reflection, helmet CORP cross-origin, price
  backfill in persistProductDetail, categoryIcon ancestor fallback,
  mediaByColor per-color gallery in public goods detail
- admin: /admin base path (vite + router)
- import-data.mjs: udt_name casting, serial sequence advance fix
2026-08-26 14:23:09 +08:00

48 lines
2.3 KiB
Vue

<template>
<footer class="product-footer text-white py-10 lg:py-16 px-4 lg:px-6 bg-inkreach-homepage-5">
<div class="max-w-7xl mx-auto">
<div class="space-y-6 md:grid md:grid-cols-2 lg:grid-cols-4 lg:gap-8">
<div class="md:col-span-2 lg:col-span-1">
<img src="/logo-unified.svg" alt="Inkreach" class="mb-4 h-[56px] w-[97px] object-contain brightness-0 invert" />
<p class="text-gray-400 text-sm">全球POD定制平台, 服务中国卖家出海</p>
</div>
<div class="grid grid-cols-3 gap-4 md:col-span-2 lg:col-span-3">
<div>
<h3 class="text-lg font-bold mb-4">产品</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">定制卫衣</a></li>
<li><a href="#" class="hover:text-white transition-colors">定制T恤</a></li>
<li><a href="#" class="hover:text-white transition-colors">定制包包</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">支持</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors">物流说明</a></li>
<li><a href="#" class="hover:text-white transition-colors">客服帮助</a></li>
<li><a href="#" class="hover:text-white transition-colors">售后客服</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">联系</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition-colors cursor-pointer">联系我们</a></li>
<li><a href="#" class="hover:text-white transition-colors cursor-pointer">官方公众号</a></li>
</ul>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 lg:mt-12 pt-6 lg:pt-8 text-center text-gray-500 text-sm">
Copyright @Inkreach 印美达POD全球供应链 All Rights Reserved.
<a
href="https://beian.miit.gov.cn/#/Integrated/index"
target="_blank"
style="color: border-gray-800; margin: 0px 10px;"
>粤ICP备xxx号</a>
广州市印美达供应链有限公司版权所有
</div>
</div>
</footer>
</template>