24 lines
625 B
TypeScript
24 lines
625 B
TypeScript
import { PropsWithChildren } from 'react'
|
|
|
|
import { Metadata } from 'next'
|
|
|
|
import 'katex/dist/katex.min.css'
|
|
import '@/styles/main.scss'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Jan',
|
|
description:
|
|
'Self-hosted, local, AI Inference Platform that scales from personal use to production deployments for a team.',
|
|
}
|
|
|
|
export default function RootLayout({ children }: PropsWithChildren) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className="h-screen overflow-hidden font-sans text-sm antialiased">
|
|
<div className="dragable-bar" />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|