From dbc2eea22e672556834255ef7dbced51fb6b5cd7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:18:58 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 854d44a..9fa61e9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,13 +2,10 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DevFlow - Build, Deploy, and Scale with Confidence", description: "DevFlow transforms how development teams collaborate, deploy, and monitor their applications. Streamline your entire development lifecycle with our comprehensive platform."}; + title: "DevFlow - Build, Deploy, and Scale with Confidence", description: "DevFlow transforms how development teams collaborate, deploy, and monitor their applications."}; export default function RootLayout({ children, @@ -16,14 +13,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} - - + + {children}