CI / quality (push) Waiting to run
Phase 1 cleanup of the personal-site revamp. Backend/architecture untouched; changes are limited to removing unused complexity and restoring feedback. Removals - Toast system: delete react-hot-toast, Toaster, QueryToastBridge, lib/toast, the toggle/easter-egg calls, related i18n keys and the dependency. - Contact protection: remove Turnstile + per-IP rate limiting (lib/contact-guard, lib/contact-protection, admin screen, form widget, app-config wiring, nav entry, test). - Speculative specs: delete orders, products, downloads, project-inquiry. Inline feedback (replaces toast, no new deps) - Add lib/admin-feedback (withFlash/readFlash) and components/admin/admin-flash, rendered centrally by AdminDashboardShell. - Emit success/error messages for media, site-settings, portfolio, smtp, marquee and maintenance actions; pages read them via searchParams. - Contact form shows validation/delivery errors inline; success still redirects to /success. Docs - Fix stale paths in frontend-system-* (components/root -> components/admin, lib/root-navigation -> lib/admin-navigation, drop phantom src/) and remove contact-protection references from docs and CLAUDE.md. - Add docs/PHASE0_DIAGNOSIS.md (diagnosis report). Note: proxy.ts self-fetch kept intentionally; it also drives maintenance mode.
110 lines
2.9 KiB
TypeScript
110 lines
2.9 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { unstable_noStore as noStore } from "next/cache";
|
|
import localFont from "next/font/local";
|
|
import Script from "next/script";
|
|
import { getLocale } from "next-intl/server";
|
|
import { SoundProvider } from "@/components/sound-provider";
|
|
import { ThemeProvider } from "@/components/theme-provider";
|
|
import { getSiteSettings } from "@/lib/app-config";
|
|
import { buildAppMetadata } from "@/lib/metadata";
|
|
import { getDirection } from "@/lib/locale";
|
|
import { buildSiteThemeStyleText } from "@/lib/site-theme";
|
|
import "./globals.css";
|
|
|
|
const museo = localFont({
|
|
src: [
|
|
{
|
|
path: "./fonts/MuseoSansRounded300.woff2",
|
|
weight: "300",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/MuseoSansRounded500.woff2",
|
|
weight: "500",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/MuseoSansRounded700.woff2",
|
|
weight: "700",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/MuseoSansRounded900.woff2",
|
|
weight: "900",
|
|
style: "normal",
|
|
},
|
|
],
|
|
variable: "--font-museo",
|
|
display: "swap",
|
|
preload: false,
|
|
fallback: ["Arial", "Helvetica", "sans-serif"],
|
|
adjustFontFallback: "Arial",
|
|
});
|
|
|
|
const dubai = localFont({
|
|
src: [
|
|
{
|
|
path: "./fonts/Dubai-Light.woff2",
|
|
weight: "300",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/Dubai-Regular.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
{
|
|
path: "./fonts/Dubai-Bold.woff2",
|
|
weight: "700",
|
|
style: "normal",
|
|
},
|
|
],
|
|
variable: "--font-dubai",
|
|
display: "swap",
|
|
preload: false,
|
|
fallback: ["Tahoma", "Arial", "sans-serif"],
|
|
adjustFontFallback: "Arial",
|
|
});
|
|
|
|
export const dynamic = "force-dynamic";
|
|
export const revalidate = 0;
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
noStore();
|
|
|
|
return buildAppMetadata();
|
|
}
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
noStore();
|
|
|
|
const siteSettings = await getSiteSettings();
|
|
const locale = await getLocale().catch(() => siteSettings.defaultLocale);
|
|
|
|
return (
|
|
<html lang={locale} dir={getDirection(locale)} suppressHydrationWarning>
|
|
<head>
|
|
<style id="dynamic-site-theme">{buildSiteThemeStyleText(siteSettings.brand.primaryColor)}</style>
|
|
</head>
|
|
<body className={`${museo.variable} ${dubai.variable}`}>
|
|
<ThemeProvider>
|
|
<SoundProvider>
|
|
{children}
|
|
</SoundProvider>
|
|
</ThemeProvider>
|
|
<Script
|
|
src="https://plausible.mohfarawati.de/js/pa-H7WDubj39eeDW3cfzeXhU.js"
|
|
strategy="afterInteractive"
|
|
/>
|
|
<Script id="plausible-init" strategy="afterInteractive">
|
|
{`window.plausible=window.plausible||function(){(plausible.q=plausible.q||[]).push(arguments)};plausible.init=plausible.init||function(i){plausible.o=i||{}};plausible.init();`}
|
|
</Script>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|