From b262b8c061a323dabea23fa28dbfac6036b32310 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 22:48:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 509b1b0..d183655 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DevFlow - SaaS Platform for Modern Developers", description: "Build powerful applications faster with DevFlow. Enterprise-grade infrastructure, real-time analytics, and seamless integrations for developers. Start free today.", keywords: "SaaS platform, developer tools, API infrastructure, cloud platform, application development", metadataBase: new URL("https://devflow.io"), - alternates: { - canonical: "https://devflow.io"}, - openGraph: { - title: "DevFlow - SaaS Platform for Modern Developers", description: "Build powerful applications faster with DevFlow. Enterprise-grade infrastructure for developers.", url: "https://devflow.io", siteName: "DevFlow", type: "website", images: [ - { - url: "/placeholders/placeholder1.webp", alt: "DevFlow Platform Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "DevFlow - SaaS Platform for Modern Developers", description: "Enterprise-grade infrastructure for developers. Build faster, deploy instantly, scale effortlessly.", images: ["/placeholders/placeholder1.webp"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DevFlow - Build Powerful Applications at Lightning Speed", description: "The complete SaaS platform for developers. Integrate seamlessly, deploy instantly, and scale effortlessly with enterprise-grade infrastructure built for modern teams."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}