Spaces:
Runtime error
Runtime error
| import type { Metadata } from "next"; | |
| import { Inter, Playfair_Display } from "next/font/google"; | |
| import "./globals.css"; | |
| const inter = Inter({ | |
| subsets: ["latin"], | |
| variable: "--font-inter", | |
| display: "swap", | |
| }); | |
| const playfair = Playfair_Display({ | |
| subsets: ["latin"], | |
| variable: "--font-playfair", | |
| display: "swap", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "IRIS — Investor Relations Intelligence | Emirates NBD", | |
| description: | |
| "IRIS is the Investor Relations Intelligence System for Emirates NBD. Ask questions about investor presentations, earnings releases, annual results, disclosures, and financial KPIs.", | |
| keywords: | |
| "Emirates NBD, Investor Relations, Financial Intelligence, Annual Report, Earnings Release, Investor Presentation, IRIS", | |
| openGraph: { | |
| title: "IRIS — Investor Relations Intelligence | Emirates NBD", | |
| description: | |
| "Enterprise-grade financial document intelligence for Emirates NBD Investor Relations.", | |
| type: "website", | |
| }, | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="en" className={`${inter.variable} ${playfair.variable}`} suppressHydrationWarning> | |
| <body suppressHydrationWarning>{children}</body> | |
| </html> | |
| ); | |
| } | |