From 8c0abd7f08ab687a27b222e05c73da0bf928c7ef Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 25 Feb 2026 12:00:41 +0800 Subject: [PATCH] fix Layout --- src/app/darmasaba/layout.tsx | 31 +++++++++++++------------------ src/app/layout.tsx | 36 +++++++++++++++++++----------------- 2 files changed, 32 insertions(+), 35 deletions(-) diff --git a/src/app/darmasaba/layout.tsx b/src/app/darmasaba/layout.tsx index 1d0e51bd..3ad3ac6c 100644 --- a/src/app/darmasaba/layout.tsx +++ b/src/app/darmasaba/layout.tsx @@ -1,30 +1,25 @@ "use client"; import colors from "@/con/colors"; -import { MantineProvider, createTheme } from "@mantine/core"; import { Box, Space, Stack } from "@mantine/core"; import { Navbar } from "@/app/darmasaba/_com/Navbar"; import Footer from "./_com/Footer"; -const theme = createTheme({}); - export default function Layout({ children }: { children: React.ReactNode }) { return ( - - - - - - {children} - -