This commit is contained in:
hailin 2025-03-12 16:59:34 +08:00
parent 07a52cd580
commit 53489c91e7
1 changed files with 1 additions and 8 deletions

View File

@ -20,8 +20,6 @@ import { ReactNode } from 'react';
import TranslationsProvider from '@/components/TranslationsProvider'; import TranslationsProvider from '@/components/TranslationsProvider';
import initTranslations from '../i18n'; import initTranslations from '../i18n';
import { usePathname } from 'next/navigation';
export const runtime = 'edge' // 'nodejs' (default) | 'edge' export const runtime = 'edge' // 'nodejs' (default) | 'edge'
@ -73,11 +71,6 @@ export default async function RootLayout({
const { t, resources } = await initTranslations(locale, i18nNamespaces); const { t, resources } = await initTranslations(locale, i18nNamespaces);
const pathname = usePathname(); // 获取当前页面路径
// 如果路径是某些特定页面(例如 /auth则不渲染 Header
//const showHeader = !pathname.startsWith('/auth');
return ( return (
<html lang={locale} dir={dir(locale)} suppressHydrationWarning> <html lang={locale} dir={dir(locale)} suppressHydrationWarning>
<head /> <head />
@ -97,7 +90,7 @@ export default async function RootLayout({
<Providers attribute="class" defaultTheme="system" enableSystem> <Providers attribute="class" defaultTheme="system" enableSystem>
<div className="flex min-h-screen flex-col"> <div className="flex min-h-screen flex-col">
<main className="flex flex-1 flex-col bg-muted/0.3"> <main className="flex flex-1 flex-col bg-muted/0.3">
<Header /> {/* <Header /> */}
{children} {children}
{/* <Footer /> */} {/* <Footer /> */}
</main> </main>