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',
|
||||
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: [
|
||||
{ media: '(prefers-color-scheme: light)', color: 'white' },
|
||||
{ media: '(prefers-color-scheme: dark)', color: 'black' }
|
||||
|
|
@ -43,10 +43,10 @@ export default function RootLayout({ children }: RootLayoutProps) {
|
|||
>
|
||||
<Toaster />
|
||||
<Providers attribute="class" defaultTheme="system" enableSystem>
|
||||
<div className="flex min-h-screen flex-col">
|
||||
<div className="flex flex-col min-h-screen">
|
||||
{/* @ts-ignore */}
|
||||
<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>
|
||||
<TailwindIndicator />
|
||||
</Providers>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue