From e873937de5ded5f5feb36e6a7f7815ce7685bd8e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:11:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 199a30e..ab4c699 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,18 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "MVP Development Agency | Fast-Track Your Product Launch", description: "Build market-ready MVPs in 8 weeks. Expert product strategy, full-stack development, and rapid deployment. Trusted by 80+ founders. Let's accelerate your idea.", keywords: "MVP development, product development agency, startup MVP, rapid prototyping, product launch", metadataBase: new URL("https://mvplabs.io"), - alternates: { - canonical: "https://mvplabs.io" - }, - openGraph: { - title: "MVP Development Agency | Fast-Track Your Product Launch", description: "Build market-ready MVPs in 8 weeks. Expert product strategy, full-stack development, and rapid deployment.", url: "https://mvplabs.io", siteName: "MVPLabs", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AROrDM04pHgayXzoyOn216Oj1M/a-modern-sleek-mvp-development-dashboard-1772552217898-87e81b0a.png", alt: "MVP development dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "MVP Development Agency | Fast-Track Your Product Launch", description: "Build market-ready MVPs in 8 weeks. Expert product strategy, full-stack development, and rapid deployment.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AROrDM04pHgayXzoyOn216Oj1M/a-modern-sleek-mvp-development-dashboard-1772552217898-87e81b0a.png" - ] - }, - robots: { - index: true, - follow: true - } -}; + title: "MVPLabs - MVP Development Agency", description: "Build your MVP in weeks, not months. Expert MVP development, product strategy, and rapid deployment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +