This commit is contained in:
Ashishyg
2025-11-07 10:54:13 +05:30
parent 6bf9f91974
commit 8833186262
23 changed files with 6987 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import './globals.css';
import type { ReactNode } from 'react';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Nordic Privacy AI',
description: 'AI-powered GDPR compliance platform for Nordic ecosystems',
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en" className="h-full">
<body className="min-h-full bg-gradient-to-br from-brand-50 via-white to-brand-100 text-slate-900 antialiased">
{children}
</body>
</html>
);
}