import React from 'react'; import { Link } from "gatsby"; import logo from "../images/favicon.png"; export const Navbar = () => { const navbarStyle = { display: 'flex', justifyContent: 'space-between', alignItems: 'center', padding: '10px 20px', backgroundColor: '#101010', color: 'white', position: 'fixed', top: 0, left: 0, width: '100%', zIndex: 1000, }; const leftStyle = { display: 'flex', alignItems: 'center', gap: '15px', fontSize: '20px', fontWeight: 'bold', }; const rightStyle = { display: 'flex', gap: '20px', }; const linkStyle = { display: 'flex', alignItems: 'center', gap: '10px', color: 'white', textDecoration: 'none', fontSize: '16px', }; return ( ); };