feat: rebuild fiscal clone architecture and harden coolify deployment
This commit is contained in:
@@ -1,15 +1,26 @@
|
||||
import './globals.css';
|
||||
import type { Metadata } from 'next';
|
||||
import { JetBrains_Mono, Space_Grotesk } from 'next/font/google';
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
const display = Space_Grotesk({
|
||||
subsets: ['latin'],
|
||||
variable: '--font-display'
|
||||
});
|
||||
|
||||
const mono = JetBrains_Mono({
|
||||
subsets: ['latin'],
|
||||
variable: '--font-mono'
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Fiscal Clone',
|
||||
description: 'Futuristic fiscal intelligence terminal powered by Better Auth and durable AI tasks.'
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
</body>
|
||||
<html lang="en" className={`${display.variable} ${mono.variable}`}>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user