-
服务
+ {/* 解决方案链接 */}
+
+
解决方案
- {footerLinks.services.map((link) => (
+ {footerLinks.solutions.map((link) => (
-
-
+
{link.name}
@@ -94,18 +95,43 @@ const Footer = () => {
- {/* 资源链接 */}
-
-
资源
+ {/* 技术支持链接 */}
+
+
技术支持
- {footerLinks.resources.map((link) => (
+ {footerLinks.support.map((link) => (
+ -
+
+ {link.name}
+
+
+ ))}
+
+
+
+ {/* 公司链接和二维码 */}
+
+
公司
+
+ {footerLinks.company.map((link) => (
-
-
+
{link.name}
))}
+ {/* 二维码 */}
+
diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx
index 1e7fb49..b3c361b 100644
--- a/src/components/layout/Header.tsx
+++ b/src/components/layout/Header.tsx
@@ -10,10 +10,11 @@ const Header = () => {
const navigation = [
{ name: '首页', href: '/' },
- { name: '关于我们', href: '/about' },
- { name: '产品服务', href: '/services' },
- { name: '新闻资讯', href: '/articles' },
- { name: '联系我们', href: '/contact' },
+ { name: '产品', href: '/products' },
+ { name: '解决方案', href: '/solutions' },
+ { name: '案例', href: '/cases' },
+ { name: '关于', href: '/about' },
+ { name: '联系', href: '/contact' },
];
const isActive = (href: string) => {
@@ -24,24 +25,28 @@ const Header = () => {
};
return (
-
-
+
+
{/* Logo */}
-
- 企业官网
+
+ WEBSOFT
{/* Desktop Navigation */}