import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import { useTheme } from '../hooks/useTheme'; const MainLayout = ({ children }) => { const { theme, toggleTheme } = useTheme(); const location = useLocation(); const navigation = [ { name: 'Home', path: '/' }, { name: 'News', path: '/news' }, { name: 'Datasets', path: '/datasets' }, { name: 'Directory', path: '/directory' }, { name: 'Matchmaking', path: '/matchmaking' } ]; return (
GXS BioNexus Hub

Bioeconomy Innovation & FLW Nexus

{children}
); }; export default MainLayout;