jan/web/app/layout.tsx
Faisal Amir 93ce01051c
fix: wrong direction icon collapse right panel (#2967)
* fix: wrong direction icon collapse right panel

* fix: add back social icon

* fix: modal troubleshoot

* fix: shadow transparent theme

* fix: enable nitro_tensorrt_llm

* fix: disabled model dropdown when local server running
2024-05-30 18:14:16 +07:00

23 lines
575 B
TypeScript

import { PropsWithChildren } from 'react'
import { Metadata } from 'next'
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 font-sans text-sm antialiased">
<div className="dragable-bar" />
{children}
</body>
</html>
)
}