From 75c8ff295027c6c82b883e671d62694d0c0a6dcf Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:07:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5024bfc..f29b525 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,51 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +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"], +}); export const metadata: Metadata = { - 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."}; + 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 + } +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +