Change Alur Aplikasi

This commit is contained in:
Randa Firman Putra
2025-07-14 15:07:33 +07:00
parent db82b40a6b
commit 6d86e1ca2f
53 changed files with 6109 additions and 964 deletions

View File

@@ -1,7 +1,7 @@
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
import { ThemeProvider } from '@/components/theme-provider';
import ClientLayout from '@/components/ClientLayout';
const geistSans = Geist({
variable: '--font-geist-sans',
@@ -27,9 +27,13 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<head>
<link rel="icon" type="image/png" href="/podif-icon.png" />
<meta httpEquiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta httpEquiv="Pragma" content="no-cache" />
<meta httpEquiv="Expires" content="0" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body suppressHydrationWarning className={`${geistSans.variable} ${geistMono.variable} antialiased min-h-screen`}>
{children}
<ClientLayout>{children}</ClientLayout>
</body>
</html>
);