import { Box, Typography, Container, Link, useTheme } from "@mui/material"; import { Image } from "../image"; import nixSnowflake from "../../public/nix-snowflake.svg"; // import Link from "next/link"; export interface LayoutProps { children: React.ReactNode; } export function Layout(props: LayoutProps) { const { children } = props; const theme = useTheme(); return (
nix-logo {`noog\u03BBe`}
{children}
); }