import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { Toaster } from "@/components/ui/toaster"; import "./tailwind.css"; import Link from "next/link"; import { ComponentProps } from "react"; import { Send } from "lucide-react"; import Navlinks from "./ui/navLinks"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Subman", description: "A self-hosted literary submission tracker." }; function NavLink(props: ComponentProps<"div"> & { href: string }) { return (

{props.children}

) } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }