diff --git a/frontend/components/navigation.tsx b/frontend/components/navigation.tsx index bf1b7be..b13426e 100644 --- a/frontend/components/navigation.tsx +++ b/frontend/components/navigation.tsx @@ -19,7 +19,7 @@ export function Navigation({ activeTab, onTabChange }: NavigationProps) { { id: "contact", name: "联系", href: "#contact" }, ] - const handleTabClick = (item: { id: string; name: string; icon: React.ReactNode }) => { + const handleTabClick = (item: { id: string; name: string; href: string }) => { // Handle all tabs, not just gallery and timeline onTabChange(item.id) setIsMenuOpen(false)