* 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>
22 lines
553 B
TypeScript
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>
|
|
)
|
|
}
|