import Head from "next/head"; import { useTheme } from "next-themes"; import classNames from "classnames"; import Header from "../Header/Header"; import Footer from "../Footer/Footer"; import { themeColors } from "../../lib/config"; import type { PropsWithChildren } from "react"; import styles from "./Layout.module.css"; type Props = PropsWithChildren<{ className?: string; }>; const Layout = ({ className, children }: Props) => { const { resolvedTheme } = useTheme(); return ( <> {resolvedTheme && ( )}
{children}