import { Container, Flex } from "@chakra-ui/react"; import NextLink from "next/link"; import Image from "next/image"; import AuthWrapper from "./AuthWrapper"; import MainNav from "../components/MainNav"; export default async function AppLayout({ children, }: { children: React.ReactNode; }) { return ( {/* Logo on the left */} Reflector

Reflector

Capture the signal, not the noise

{children}
); }