Files
mamad-app/app/layout.tsx
2026-01-16 20:36:21 +02:00

32 lines
720 B
TypeScript

import type React from "react"
import type { Metadata } from "next"
import { IBM_Plex_Sans_Hebrew } from "next/font/google"
import "./globals.css"
const ibmPlexSansHebrew = IBM_Plex_Sans_Hebrew({
subsets: ["hebrew"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
})
export const metadata: Metadata = {
title: 'ממ"ד',
manifest: '/manifest.webmanifest',
description: 'דיווחים בשעת חירום',
icons: {
icon: '/icon.png',
apple: '/apple-icon.png',
},
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="he" dir="rtl">
<body className={ibmPlexSansHebrew.className}>{children}</body>
</html>
)
}