diff --git a/.vscode/settings.json b/.vscode/settings.json index 15f41e9..83fed32 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,5 +10,6 @@ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, - "editor.wordWrap": "on" + "editor.wordWrap": "on", + "postman.settings.dotenv-detection-notification-visibility": false } diff --git a/app/layout.tsx b/app/layout.tsx index b640698..bbec3f7 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,16 +1,19 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "./provider"; import { Toaster } from "@/components/ui/toaster"; import dynamic from "next/dynamic"; -const ClientAppLayout = dynamic(() => import("@/layouts/ClientAppLayout"), { - ssr: false, -}); +const ServerWrapperLayout = dynamic( + () => import("@/layouts/WrapperLayout/Server/ServerWrapperLayout"), + { + ssr: true, + } +); -const inter = Inter({ subsets: ["latin"] }); +const dmSans = DM_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { title: { @@ -28,20 +31,24 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - +
- - + + - + - -- {des} -
-