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}