seo优化

This commit is contained in:
WindowBird 2025-10-28 10:13:47 +08:00
parent 26e8d30fd9
commit 70c56da6a3
3 changed files with 44 additions and 30 deletions

View File

@ -10,32 +10,32 @@
<!-- 服务展示区域 -->
<section aria-label="服务展示" class="mb-16">
<div class="grid grid-cols-1">
<div class="group cursor-pointer">
<img src="/img/1.jpg" alt="服务项目展示图片1" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/1.jpg" alt="服务项目展示图片1" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/2.jpg" alt="服务项目展示图片2" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/2.jpg" alt="服务项目展示图片2" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/3.jpg" alt="服务项目展示图片3" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/3.jpg" alt="服务项目展示图片3" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/4.jpg" alt="服务项目展示图片4" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/4.jpg" alt="服务项目展示图片4" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/5.jpg" alt="服务项目展示图片5" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/5.jpg" alt="服务项目展示图片5" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/6.jpg" alt="服务项目展示图片6" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/6.jpg" alt="服务项目展示图片6" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/7.jpg" alt="服务项目展示图片7" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/7.jpg" alt="服务项目展示图片7" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/8.jpg" alt="服务项目展示图片8" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/8.jpg" alt="服务项目展示图片8" class="w-full rounded-lg transition-shadow duration-300">
</div>
<div class="group cursor-pointer">
<img src="/img/9.jpg" alt="服务项目展示图片9" class="w-full rounded-lg shadow-md group-hover:shadow-xl transition-shadow duration-300">
<div class=" cursor-pointer">
<img src="/img/9.jpg" alt="服务项目展示图片9" class="w-full rounded-lg transition-shadow duration-300">
</div>
</div>
</section>
@ -138,10 +138,26 @@
useHead({
title: '联系我们 - 专业服务公司 | 电话15280659990',
meta: [
{ name: 'description', content: '联系我们获取专业服务。地址福建省福鼎市太姥山镇海埕路13号电话15280659990邮箱564737095@qq.com。工作时间周一至周六 8:30-18:00。' },
{ name: 'keywords', content: '联系我们,联系方式,电话,邮箱,地址,福建省福鼎市,太姥山镇,海埕路,工作时间' },
{ name: 'author', content: '专业服务公司' },
{ name: 'robots', content: 'index, follow' },
{
name: 'description',
content: '创特物联科技提供OEM电动车共享系统解决方案含客户端/商户端小程序、智能中控硬件及管理系统。厂家直销支持定制品质可靠。联系电话15280659990'
},
{
name: 'keywords',
content: '共享电动车系统,电动车小程序开发,智能中控模块,OEM电动车方案,共享电单车管理系统,电动车物联网,创特物联科技,福建电动车解决方案,电动车定制开发,共享电动车中控,电动车智能硬件'
},
{
name: 'author',
content: '创特物联科技(福鼎)有限公司'
},
{
name: 'robots',
content: 'index, follow, max-snippet:150'
},
{
name: 'copyright',
content: 'Chuangte IoT Technology'
},
{ property: 'og:title', content: '联系我们 - 专业服务公司' },
{ property: 'og:description', content: '联系我们获取专业服务。地址福建省福鼎市太姥山镇海埕路13号电话15280659990' },
{ property: 'og:type', content: 'website' },

View File

@ -22,10 +22,7 @@ onUnmounted(() => window.removeEventListener('scroll', handleScroll))
<template>
<UHeader
:ui="{root:'fixed right-0 left-0 h-8 lg:h-16'}"
>
:ui="{root:'fixed right-0 left-0 h-8 lg:h-16'}">
<!-- 标题部分 -->
<template #title>
<view class="h-6 w-auto text-primary">
@ -39,11 +36,7 @@ onUnmounted(() => window.removeEventListener('scroll', handleScroll))
商户中心
</view>
</template>
</UHeader>
</template>
//:ui="headerUI"
//:ui="{link: 'text-white text-lg font-bold '}"

View File

@ -10,4 +10,9 @@ export default defineNuxtConfig({
googleicons: false // 禁用 Google Icons
}
},
// 开发服务器配置
devServer: {
port: 3008,
host: '0.0.0.0'
}
})