import Selfie from "../Selfie"; import Menu from "../Menu"; import { styled, theme } from "../../lib/styles/stitches.config"; import type { ComponentPropsWithoutRef } from "react"; const Wrapper = styled("header", { width: "100%", height: "4.5em", padding: "0.7em 1.5em", borderBottom: `1px solid ${theme.colors.kindaLight}`, backgroundColor: theme.colors.backgroundHeader, transition: `background ${theme.transitions.fade}, border ${theme.transitions.fade}`, zIndex: 9999, // blurry glass-like background effect (except on firefox...?) backdropFilter: "saturate(180%) blur(5px)", "@medium": { padding: "0.75em 1.25em", height: "5.9em", }, }); const Nav = styled("nav", { display: "flex", alignItems: "center", justifyContent: "space-between", width: "100%", maxWidth: theme.sizes.maxLayoutWidth, margin: "0 auto", }); const ResponsiveMenu = styled(Menu, { "@medium": { maxWidth: "325px", }, "@small": { maxWidth: "225px", }, }); export type HeaderProps = ComponentPropsWithoutRef; const Header = ({ ...rest }: HeaderProps) => { return ( ); }; export default Header;