import type { Metadata } from "next"; import Link from "next/link"; import type { ReactNode } from "react"; import { Gamepad2, Settings } from "lucide-react"; import { Toaster } from "@/components/ui/sonner"; import "./globals.css"; export const metadata: Metadata = { title: "English PK", description: "字母单词 PK 赛", }; export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) { return (
PK English PK
{children}
); }