import type { Metadata } from "next"; import { Heebo, Geist } from "next/font/google"; import { Providers } from "@/lib/providers"; import "./globals.css"; import { cn } from "@/lib/utils"; const geist = Geist({subsets:['latin'],variable:'--font-sans'}); const heebo = Heebo({ variable: "--font-heebo", subsets: ["hebrew", "latin"], weight: ["300", "400", "500", "600", "700", "800", "900"], display: "swap", }); export const metadata: Metadata = { title: { default: "עוזר משפטי — ניהול תיקים", template: "%s · עוזר משפטי", }, description: "מערכת סיוע בניסוח החלטות לוועדת ערר לתכנון ובנייה, ירושלים", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }