From f3523e23e591e358dc22e2b9b23e75a19d6162d8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:22:44 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f29b525..39cfa84 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,17 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "MVP Development Agency | Ship in Weeks, Not Months", description: "Turn your product vision into market-ready software. Transparent process, experienced team, startup-focused delivery. 50+ MVPs launched. 4-8 week delivery.", keywords: "MVP development, startup development, rapid prototyping, SaaS development, MVP agency", metadataBase: new URL("https://webild.dev"), - alternates: { - canonical: "https://webild.dev" - }, - openGraph: { - title: "Ship Your MVP in Weeks | Webild", description: "Expert MVP development for early-stage founders. Transparent pricing, proven track record, startup expertise.", type: "website", siteName: "Webild", images: [{ - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARJeYX8Eds8VZQrJWHsamdmY5p/a-modern-clean-mvp-development-dashboard-1772549675828-98387a7e.png", alt: "MVP development platform" - }] - }, - twitter: { - card: "summary_large_image", title: "Ship Your MVP Fast | Webild", description: "Transparent MVP development for startups. 50+ MVPs delivered. 4-8 week timeline.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARJeYX8Eds8VZQrJWHsamdmY5p/a-modern-clean-mvp-development-dashboard-1772549675828-98387a7e.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webild - MVP Development for Startups", description: "Ship your MVP in weeks, not months. We turn your product vision into market-ready software with transparent process and startup-focused delivery.", keywords: "MVP development, startup software, web development, product launch"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}