22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Flow Funding',
|
|
description: 'Visual interactive interface for threshold-based flow funding',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="min-h-screen bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|