website-vue/.nuxt/dist/server/components/FooterSection.vue2.mjs.map.json
2025-04-22 15:57:06 +08:00

1 line
4.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{"file":"FooterSection.vue2.mjs","mappings":";;;;;;;AAqEA,UAAM,WAAW;AAAA,MACf,EAAE,MAAM,YAAY,MAAM,YAAY;AAAA,MACtC,EAAE,MAAM,WAAW,MAAM,YAAY;AAAA,MACrC,EAAE,MAAM,aAAa,MAAM,YAAY;AAAA,MACvC,EAAE,MAAM,eAAe,MAAM,YAAY;AAAA,MACzC,EAAE,MAAM,WAAW,MAAM,YAAY;AAAA,IACvC;AAEA,UAAM,YAAY;AAAA,MAChB,EAAE,MAAM,QAAQ,MAAM,aAAa;AAAA,MACnC,EAAE,MAAM,QAAQ,MAAM,aAAa;AAAA,MACnC,EAAE,MAAM,QAAQ,MAAM,aAAa;AAAA,MACnC,EAAE,MAAM,SAAS,MAAM,aAAa;AAAA,MACpC,EAAE,MAAM,SAAS,MAAM,aAAa;AAAA,IACtC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","names":[],"sources":["../../../../components/FooterSection.vue"],"sourcesContent":["<template>\r\n <footer class=\"bg-primary text-white py-12\">\r\n <div class=\"container\">\r\n <div class=\"grid md:grid-cols-4 gap-8\">\r\n <div>\r\n <h5 class=\"text-lg font-semibold mb-4\">云服务专家</h5>\r\n <p class=\"text-white/50 mb-4\">专业的AWS云服务解决方案提供商致力于帮助企业实现数字化转型</p>\r\n <div class=\"flex space-x-4\">\r\n <a href=\"#\" class=\"text-white/50 hover:text-white transition-colors\">\r\n <i class=\"fab fa-weixin\"></i>\r\n </a>\r\n <a href=\"#\" class=\"text-white/50 hover:text-white transition-colors\">\r\n <i class=\"fab fa-weibo\"></i>\r\n </a>\r\n <a href=\"#\" class=\"text-white/50 hover:text-white transition-colors\">\r\n <i class=\"fab fa-linkedin\"></i>\r\n </a>\r\n </div>\r\n </div>\r\n \r\n <div>\r\n <h5 class=\"text-lg font-semibold mb-4\">AWS产品</h5>\r\n <ul class=\"space-y-2\">\r\n <li v-for=\"(product, index) in products\" :key=\"index\">\r\n <NuxtLink :to=\"product.path\" class=\"text-white/70 hover:text-white transition-colors\">\r\n {{ product.name }}\r\n </NuxtLink>\r\n </li>\r\n </ul>\r\n </div>\r\n \r\n <div>\r\n <h5 class=\"text-lg font-semibold mb-4\">解决方案</h5>\r\n <ul class=\"space-y-2\">\r\n <li v-for=\"(solution, index) in solutions\" :key=\"index\">\r\n <NuxtLink :to=\"solution.path\" class=\"text-white/70 hover:text-white transition-colors\">\r\n {{ solution.name }}\r\n </NuxtLink>\r\n </li>\r\n </ul>\r\n </div>\r\n \r\n <div>\r\n <h5 class=\"text-lg font-semibold mb-4\">联系我们</h5>\r\n <ul class=\"space-y-3\">\r\n <li class=\"flex items-start\">\r\n <i class=\"fas fa-map-marker-alt text-white/70 mt-1 mr-3\"></i>\r\n <span class=\"text-white/70\">北京市朝阳区某某大厦10层</span>\r\n </li>\r\n <li class=\"flex items-start\">\r\n <i class=\"fas fa-phone text-white/70 mt-1 mr-3\"></i>\r\n <span class=\"text-white/70\">400-123-4567</span>\r\n </li>\r\n <li class=\"flex items-start\">\r\n <i class=\"fas fa-envelope text-white/70 mt-1 mr-3\"></i>\r\n <span class=\"text-white/70\">contact@example.com</span>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"mt-12 pt-8 border-t border-white/10 text-center\">\r\n <p class=\"text-white/50\">&copy; {{ new Date().getFullYear() }} 云服务专家. 保留所有权利.</p>\r\n </div>\r\n </div>\r\n </footer>\r\n</template>\r\n\r\n<script setup lang=\"ts\">\r\nconst products = [\r\n { name: 'EC2 云服务器', path: '/products' },\r\n { name: 'S3 对象存储', path: '/products' },\r\n { name: 'RDS 数据库服务', path: '/products' },\r\n { name: 'Lambda 无服务器', path: '/products' },\r\n { name: '更多产品...', path: '/products' }\r\n];\r\n\r\nconst solutions = [\r\n { name: '网站托管', path: '/solutions' },\r\n { name: '企业上云', path: '/solutions' },\r\n { name: '灾备方案', path: '/solutions' },\r\n { name: '大数据分析', path: '/solutions' },\r\n { name: '微服务架构', path: '/solutions' }\r\n];\r\n</script> "],"version":3}