From 24ed4c96a7b8f42222d1a987dafce0161c7fc7e8 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Thu, 10 Oct 2024 13:55:04 -0400 Subject: [PATCH] test Took 15 minutes --- src/app/layout.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba3d126..950669c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,4 @@ -import type { Metadata, Viewport } from "next"; +import type { Metadata } from "next"; import "./styles/globals.css"; import { ReactElement, ReactNode } from "react"; import { ThemeProvider } from "@/components/theme-provider"; @@ -7,16 +7,13 @@ import Sidebar from "@/components/sidebar/sidebar"; import Footer from "@/components/footer"; import { TooltipProvider } from "@/components/ui/tooltip"; import { getDocsContent } from "@/lib/mdx"; -import config from "@/config"; /** * The metadata for this app. */ -export const metadata: Metadata = config.metadata ?? { - title: "Pulse App", - description: "Public documentation for Pulse App!", -}; -export const viewport: Viewport = config.viewport ?? {}; +// export const metadata: Metadata = config.metadata; +export const metadata: Metadata = { title: "test", description: "testing" }; +// export const viewport: Viewport = config.viewport; export const dynamic = "force-dynamic";