import React from 'react';
import { LayoutDashboard, TrendingUp, Zap, Shield, Lock, Globe, Database } from 'lucide-react';
const Layout = ({ children }) => {
const navItems = [
{ name: 'Overview', path: '#top', icon: },
{ name: 'Fintech Growth', path: '#fintech', icon: },
{ name: 'AI Talent', path: '#ai_talent', icon: },
{ name: 'ESG Impact', path: '#esg', icon: },
{ name: 'Regulatory', path: '#regulatory', icon: },
{ name: 'Supply Chain', path: '#supply_chain', icon: },
];
return (
{/* Sidebar */}
{/* Main Content */}
{children}
);
};
export default Layout;