jan/web/app/layout.tsx
NamH 96af5fb85a
fix: quick ask improvement (#2543)
* docs: Update README.md

* fix: quick ask improvement

Signed-off-by: James <james@jan.ai>

---------

Signed-off-by: James <james@jan.ai>
Co-authored-by: hieu-jan <150573299+henryh0x1@users.noreply.github.com>
Co-authored-by: James <james@jan.ai>
2024-03-30 08:59:52 +07:00

22 lines
553 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="bg-white font-sans text-sm antialiased dark:bg-background">
{children}
</body>
</html>
)
}