Upgrade to Next.js 15.0.1 (#454)
This commit is contained in:
parent
00b125378c
commit
ac2659255e
9 changed files with 4320 additions and 3538 deletions
|
|
@ -1,24 +1,62 @@
|
|||
import { Metadata } from "next";
|
||||
import { Toaster } from "sonner";
|
||||
import { Metadata } from 'next';
|
||||
import { Toaster } from 'sonner';
|
||||
|
||||
import { Navbar } from "@/components/custom/navbar";
|
||||
import { ThemeProvider } from "@/components/custom/theme-provider";
|
||||
import { Navbar } from '@/components/custom/navbar';
|
||||
import { ThemeProvider } from '@/components/custom/theme-provider';
|
||||
|
||||
import "./globals.css";
|
||||
import './globals.css';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
metadataBase: new URL("https://chat.vercel.ai"),
|
||||
title: "Next.js Chatbot Template",
|
||||
description: "Next.js chatbot template using the AI SDK.",
|
||||
metadataBase: new URL('https://chat.vercel.ai'),
|
||||
title: 'Next.js Chatbot Template',
|
||||
description: 'Next.js chatbot template using the AI SDK.',
|
||||
};
|
||||
|
||||
export const viewport = {
|
||||
maximumScale: 1, // Disable auto-zoom on mobile Safari
|
||||
};
|
||||
|
||||
const LIGHT_THEME_COLOR = 'hsl(0 0% 100%)';
|
||||
const DARK_THEME_COLOR = 'hsl(240deg 10% 3.92%)';
|
||||
const THEME_COLOR_SCRIPT = `\
|
||||
(function() {
|
||||
var html = document.documentElement;
|
||||
var meta = document.querySelector('meta[name="theme-color"]');
|
||||
if (!meta) {
|
||||
meta = document.createElement('meta');
|
||||
meta.setAttribute('name', 'theme-color');
|
||||
document.head.appendChild(meta);
|
||||
}
|
||||
function updateThemeColor() {
|
||||
var isDark = html.classList.contains('dark');
|
||||
meta.setAttribute('content', isDark ? '${DARK_THEME_COLOR}' : '${LIGHT_THEME_COLOR}');
|
||||
}
|
||||
var observer = new MutationObserver(updateThemeColor);
|
||||
observer.observe(html, { attributes: true, attributeFilter: ['class'] });
|
||||
updateThemeColor();
|
||||
})();`;
|
||||
|
||||
export default async function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<html
|
||||
lang="en"
|
||||
// `next-themes` injects an extra classname to the body element to avoid
|
||||
// visual flicker before hydration. Hence the `suppressHydrationWarning`
|
||||
// prop is necessary to avoid the React hydration mismatch warning.
|
||||
// https://github.com/pacocoursey/next-themes?tab=readme-ov-file#with-app
|
||||
suppressHydrationWarning
|
||||
>
|
||||
<head>
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: THEME_COLOR_SCRIPT,
|
||||
}}
|
||||
/>
|
||||
</head>
|
||||
<body className="antialiased">
|
||||
<ThemeProvider
|
||||
attribute="class"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue