import { Box, Typography, Container, Link, IconButton, Tooltip, useMediaQuery, useTheme, } from "@mui/material"; import { Image } from "../image"; import nixSnowflake from "../../public/nix-snowflake.svg"; import nixWhite from "../../public/white.svg"; import GitHubIcon from "@mui/icons-material/GitHub"; export interface LayoutProps { children: React.ReactNode; } export const useMobile = () => useMediaQuery(useTheme().breakpoints.down("md")); export function Layout(props: LayoutProps) { const { children } = props; const theme = useTheme(); return (
nix-logo {`noog\u03BBe`}
{children}
); }