Fix language
This commit is contained in:
parent
e0e487e857
commit
76d81fb557
1 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ export const metadata: Metadata = {
|
||||||
default: 'Next.js AI Chatbot',
|
default: 'Next.js AI Chatbot',
|
||||||
template: `%s - Next.js AI Chatbot`
|
template: `%s - Next.js AI Chatbot`
|
||||||
},
|
},
|
||||||
description: 'An AI-powered chatbot built with Next.js and Vercel.',
|
description: 'An AI-powered chatbot template built with Next.js and Vercel.',
|
||||||
themeColor: [
|
themeColor: [
|
||||||
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
||||||
{ media: '(prefers-color-scheme: dark)', color: 'black' }
|
{ media: '(prefers-color-scheme: dark)', color: 'black' }
|
||||||
|
|
@ -43,10 +43,10 @@ export default function RootLayout({ children }: RootLayoutProps) {
|
||||||
>
|
>
|
||||||
<Toaster />
|
<Toaster />
|
||||||
<Providers attribute="class" defaultTheme="system" enableSystem>
|
<Providers attribute="class" defaultTheme="system" enableSystem>
|
||||||
<div className="flex min-h-screen flex-col">
|
<div className="flex flex-col min-h-screen">
|
||||||
{/* @ts-ignore */}
|
{/* @ts-ignore */}
|
||||||
<Header />
|
<Header />
|
||||||
<main className="flex flex-1 flex-col bg-muted/50">{children}</main>
|
<main className="flex flex-col flex-1 bg-muted/50">{children}</main>
|
||||||
</div>
|
</div>
|
||||||
<TailwindIndicator />
|
<TailwindIndicator />
|
||||||
</Providers>
|
</Providers>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue