16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
|
|
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>
|
|
);
|
|
}
|