* Revert "feat: temporary remove dark mode :( (#2168)" This reverts commit 222b4ad897c275dab0eaec3c8a8472bf3df7afc4. * fix: revert darkmode and fix darkmode for import model * fix: prettier format import model --------- Co-authored-by: Louis <louis@jan.ai>
25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import { PropsWithChildren } from 'react'
|
|
|
|
import { Metadata } from 'next'
|
|
|
|
import Providers from '@/containers/Providers'
|
|
|
|
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="bg-white font-sans text-sm antialiased dark:bg-background">
|
|
<div className="title-bar" />
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|