---
export interface Props {
title?: string;
description?: string;
navigationItems?: Array<{ label: string; href: string; icon?: string }>;
className?: string;
}
import GlowButton from './common/GlowButton.astro';
const {
title = 'Jiao77 - AI & Technology Explorer',
description,
navigationItems,
className = ''
} = Astro.props;
const defaultNavigation = [
{ label: '首页', href: '/', icon: 'fas fa-home' },
{ label: '报告导航', href: '/report', icon: 'fas fa-chart-line' },
{ label: '关于我', href: '/about', icon: 'fas fa-user-astronaut' },
{ label: '组件测试', href: '/components-demo', icon: 'fas fa-user-astronaut' },
];
const links = navigationItems && navigationItems.length > 0 ? navigationItems : defaultNavigation;
---