mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-08 06:28:58 +00:00
19 lines
541 B
TypeScript
19 lines
541 B
TypeScript
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>
|
|
);
|
|
}
|