optimize
This commit is contained in:
parent
ecc0ee0415
commit
3905e101ab
@ -1,4 +1,6 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {};
|
||||
const nextConfig = {
|
||||
transpilePackages: ["geist"],
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
|
@ -1,12 +1,10 @@
|
||||
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 Bg from "@/components/Bg";
|
||||
import Providers from "@/components/Providers";
|
||||
|
||||
const geistSans = GeistSans;
|
||||
const geistMono = GeistMono;
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Login to Your Dashboard - Vertex",
|
||||
description:
|
||||
@ -28,7 +26,7 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${geistSans.variable} ${geistMono.className} antialiased bg-[#070F11]`}>
|
||||
<body className={`${GeistSans.variable} ${GeistMono.className} antialiased bg-[#070F11]`}>
|
||||
<Providers>{children}</Providers>
|
||||
<Bg />
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user