SantoshKumar1310's picture
Upload folder using huggingface_hub
49e53ae verified
import type { Metadata } from 'next'
import { Space_Grotesk, DM_Sans } from 'next/font/google'
import './globals.css'
const spaceGrotesk = Space_Grotesk({
subsets: ['latin'],
variable: '--font-space-grotesk',
weight: ['300', '400', '500', '600', '700']
})
const dmSans = DM_Sans({
subsets: ['latin'],
variable: '--font-dm-sans',
weight: ['400', '500', '600', '700']
})
export const metadata: Metadata = {
title: 'QuantumShield - Quantum Fraud Detection',
description: 'Hybrid Quantum-Classical Fraud Detection System with VQC, QAOA, and QNN',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className="dark">
<body className={`${spaceGrotesk.variable} ${dmSans.variable} font-sans antialiased`}>
{children}
</body>
</html>
)
}