kanban / src /components /Document.tsx
Leon4gr45's picture
Deploy magic-resume as Docker Space (port 3000)
c30ea2a verified
Raw
History Blame Contribute Delete
535 Bytes
import { Inter } from "next/font/google";
import { ReactNode } from "react";
const inter = Inter({
subsets: ["latin"],
});
type Props = {
children: ReactNode;
locale: string;
bodyClassName?: string;
};
export default function Document({ children, locale, bodyClassName }: Props) {
return (
<html className={inter.className} lang={locale} suppressHydrationWarning>
<head>
<link rel="icon" href="/favicon.ico?v=2" />
</head>
<body className={bodyClassName}>{children}</body>
</html>
);
}