import React from 'react'; import { Link, NavLink } from 'react-router-dom'; const PezkuwiChainLogo: React.FC = () => { return ( PezkuwiChain Logo ); }; const Header: React.FC = () => { const linkStyle = "text-white hover:text-green-400 transition-colors"; const activeLinkStyle = { color: '#34D399' }; // green-400 return (
); }; const Footer: React.FC = () => { return ( ); }; interface LayoutProps { children: React.ReactNode; } const Layout: React.FC = ({ children }) => { return (
{/* Add padding-top equal to header height */}
{children}
); }; export default Layout;