星辰科技成立于 2015 年,是一家以技术与服务驱动的数字化服务商,致力于帮助企业在移动互联网时代实现增长。
' + + '我们已服务超过 2000+ 家企业客户,覆盖零售、制造、教育、本地生活等多个行业,提供从战略咨询到系统落地的一站式服务。
', + }, +} + +/** 顶部快捷导航宫格兜底 */ +export const DEMO_NAVS: CmsNavigation[] = [ + { navigationId: 1, title: '公司简介', icon: '🏢', color: '#EAF2FB', path: '/official/about' }, + { navigationId: 2, title: '产品中心', icon: '📦', color: '#EAF2FB' }, + { navigationId: 3, title: '解决方案', icon: '💡', color: '#EAF2FB' }, + { navigationId: 4, title: '新闻资讯', icon: '📰', color: '#EAF2FB', path: '/official/article' }, + { navigationId: 5, title: '客户案例', icon: '🤝', color: '#EAF2FB' }, + { navigationId: 6, title: '留言咨询', icon: '💬', color: '#EAF2FB', path: '/official/message' }, + { navigationId: 7, title: '关于我们', icon: 'ℹ️', color: '#EAF2FB', path: '/official/about' }, + { navigationId: 8, title: '联系我们', icon: '📞', color: '#EAF2FB', path: '/official/message' }, +] + +/** Banner 兜底(渐变 + 标题,无外链图片) */ +export interface DemoBanner { + title: string + subtitle: string + gradient: string +} +export const DEMO_BANNERS: DemoBanner[] = [ + { title: '数字化转型专家', subtitle: '让增长更简单', gradient: 'linear-gradient(135deg,#185FA5,#3D86CE)' }, + { title: '智能营销一体化', subtitle: '全渠道触达你的客户', gradient: 'linear-gradient(135deg,#12518C,#1E6BB8)' }, + { title: '2000+ 企业信赖', subtitle: '专业服务值得托付', gradient: 'linear-gradient(135deg,#0E4070,#185FA5)' }, +] + +/** 首页「核心业务」横向卡片兜底 */ +export interface DemoBusiness { + id: number + title: string + desc: string + icon: string +} +export const DEMO_BUSINESS: DemoBusiness[] = [ + { id: 1, title: '数字化转型', desc: '从战略到落地的全链路咨询与实施', icon: '🚀' }, + { id: 2, title: '智能营销', desc: '私域运营 + 全渠道增长引擎', icon: '📈' }, + { id: 3, title: '客户管理', desc: '一体化 CRM 与会员体系', icon: '👥' }, + { id: 4, title: '数据洞察', desc: '可视化看板辅助经营决策', icon: '📊' }, +] + +/** 资讯列表兜底 */ +export const DEMO_ARTICLES: CmsArticle[] = [ + { + articleId: 101, + title: '星辰科技发布全新一代智能营销平台', + overview: '集成私域运营、内容分发与数据洞察,帮助企业以更低成本获取并留住客户。', + image: '', + source: '公司新闻', + author: '星辰科技', + createTime: '2026-08-01', + }, + { + articleId: 102, + title: '零售行业数字化转型的 5 个关键步骤', + overview: '从会员体系到门店数字化,拆解一套可落地的转型路线图。', + image: '', + source: '行业洞察', + author: '研究院', + createTime: '2026-07-20', + }, + { + articleId: 103, + title: '客户案例:某连锁品牌会员复购提升 38%', + overview: '通过一体化客户管理与精准触达,实现显著增长。', + image: '', + source: '客户案例', + author: '星辰科技', + createTime: '2026-07-08', + }, + { + articleId: 104, + title: '小程序官网能力上新:留言咨询与内容管理', + overview: '企业可自助维护站点内容,客户一键发起咨询。', + image: '', + source: '产品动态', + author: '产品团队', + createTime: '2026-06-25', + }, +] + +/** 关于页「企业优势」兜底 */ +export interface DemoAdvantage { + title: string + desc: string + icon: string +} +export const DEMO_ADVANTAGES: DemoAdvantage[] = [ + { title: '技术领先', desc: '自研增长引擎,稳定支撑高并发业务', icon: '⚙️' }, + { title: '服务专业', desc: '一对一顾问,从咨询到落地全程陪伴', icon: '🎯' }, + { title: '数据安全', desc: '金融级加密与权限管控,合规可靠', icon: '🔒' }, + { title: '持续迭代', desc: '产品按月更新,紧跟行业趋势', icon: '🔄' }, +] diff --git a/src/official/index/index.tsx b/src/official/index/index.tsx index fc268c8..061c135 100644 --- a/src/official/index/index.tsx +++ b/src/official/index/index.tsx @@ -12,12 +12,27 @@ import type { CmsAd, CmsWebsite, CmsArticle, CmsNavigation } from '@/api/officia import OfficialTabBar from '../components/OfficialTabBar' import ArticleCard from '../components/ArticleCard' import SectionTitle from '../components/SectionTitle' +import { + DEMO_SITE, + DEMO_NAVS, + DEMO_BANNERS, + DEMO_BUSINESS, + DEMO_ARTICLES, +} from '../data/demo' definePageConfig({ navigationBarTitleText: '企业官网', enableShareAppMessage: true, }) +interface Slide { + key: string + src?: string + title?: string + subtitle?: string + gradient?: string +} + const OfficialIndex: React.FC = () => { const [site, setSite] = useState