From a20c986d5d131572a1ca694a45ab96ebc8dfe066 Mon Sep 17 00:00:00 2001 From: Thanakarn Klangkasame <77600906+Simulationable@users.noreply.github.com> Date: Thu, 9 Oct 2025 17:49:15 +0700 Subject: [PATCH] Change Scale --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 07fef89..0f809ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import "./globals.css"; -import type { Metadata, Viewport } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import type {Metadata, Viewport} from "next"; +import {Geist, Geist_Mono} from "next/font/google"; import "./globals.css"; import React from "react"; -const geistSans = Geist({ subsets: ["latin"], variable: "--font-geist-sans" }); -const geistMono = Geist_Mono({ subsets: ["latin"], variable: "--font-geist-mono" }); +const geistSans = Geist({subsets: ["latin"], variable: "--font-geist-sans"}); +const geistMono = Geist_Mono({subsets: ["latin"], variable: "--font-geist-mono"}); export const metadata: Metadata = { title: "Enterprise Orchestration Platform", @@ -18,10 +18,9 @@ export const viewport: Viewport = { viewportFit: "cover", }; -export default function RootLayout({ children }: { children: React.ReactNode }) { +export default function RootLayout({children}: { children: React.ReactNode }) { return ( - - {/* ใช้ className ของฟอนต์จริง ไม่ใช่แค่วางเป็น variable */} + {children}