jan/web/app/layout.tsx
Faisal Amir 222b4ad897
feat: temporary remove dark mode :( (#2168)
* remove darkmode

* fix progress component background color
2024-02-27 20:39:57 +07:00

25 lines
643 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">
<div className="title-bar" />
<Providers>{children}</Providers>
</body>
</html>
)
}