Files
inkreach-official-website/apps/website/app/components/AppFooter.vue
T
yeuimu 79fabd85f7 feat(product-center): implement Figma-designed UI, upload module, and website tests
- Redesign website homepage & product-center per Figma (fonts, logos, hero/footer/customer cases)
- Add API upload module (multer) with static serving for uploads/public assets
- Add OriginGood.delisted flag and SDS request retry logic
- Add admin ImageUpload component and goods import/upload flows
- Add vitest suite for website components and composables (32 tests)
- Add skills, docs, plans and PRODUCT.md
2026-08-20 14:32:03 +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>