This commit is contained in:
Reihan 2025-05-01 01:00:44 +07:00
parent ecc0ee0415
commit 3905e101ab
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = {}; const nextConfig = {
transpilePackages: ["geist"],
};
module.exports = nextConfig; module.exports = nextConfig;

View File

@ -1,12 +1,10 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { GeistSans, GeistMono } from "geist/font"; import { GeistSans } from "geist/font/sans";
import { GeistMono } from "geist/font/mono";
import "./globals.css"; import "./globals.css";
import Bg from "@/components/Bg"; import Bg from "@/components/Bg";
import Providers from "@/components/Providers"; import Providers from "@/components/Providers";
const geistSans = GeistSans;
const geistMono = GeistMono;
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Login to Your Dashboard - Vertex", title: "Login to Your Dashboard - Vertex",
description: description:
@ -28,7 +26,7 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang="en"> <html lang="en">
<body className={`${geistSans.variable} ${geistMono.className} antialiased bg-[#070F11]`}> <body className={`${GeistSans.variable} ${GeistMono.className} antialiased bg-[#070F11]`}>
<Providers>{children}</Providers> <Providers>{children}</Providers>
<Bg /> <Bg />
</body> </body>