Skip to content

Commit

Permalink
Fix language
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Jun 16, 2023
1 parent e0e487e commit 76d81fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 76d81fb

Please sign in to comment.