Merge version_2 into main #10

Merged
bender merged 1 commits from version_2 into main 2026-03-03 16:23:11 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}