Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 10:46:09 +00:00
2 changed files with 9 additions and 45 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Web Design & Development Agency | Webild Studio", description: "Award-winning web agency specializing in high-converting website design, development, and digital strategy. Transform your brand with beautiful, results-driven digital solutions.", keywords: "web design, web development, web agency, digital agency, website design, e-commerce development, SaaS development, responsive web design, conversion optimization", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Webild Studio - Web Design & Development Agency", description: "Create stunning, high-converting websites that drive real results. Award-winning web agency with proven track record.", url: "https://webild.studio", siteName: "Webild Studio", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWSysToK8hWDk6VlArM4pnQZNF/a-modern-web-design-studio-with-creative-1772707197630-bf2c13e8.png", alt: "Webild Studio - Web Design & Development Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Webild Studio - Web Design & Development Agency", description: "High-converting websites that transform your brand. Award-winning web agency.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWSysToK8hWDk6VlArM4pnQZNF/a-modern-web-design-studio-with-creative-1772707197630-bf2c13e8.png"],
},
};
title: "Webild Studio - Web Design & Development", description: "Award-winning web agency crafting beautiful, high-converting websites that drive real results."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -248,7 +248,7 @@ export default function LandingPage() {
plans={[
{
id: "starter", badge: "Starter", badgeIcon: Sparkles,
price: "$4,999", subtitle: "Perfect for small projects", buttons: [
price: "$4,999", subtitle: "Perfect for small projects • 30-day satisfaction guarantee", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" },
],
@@ -258,7 +258,7 @@ export default function LandingPage() {
},
{
id: "professional", badge: "Professional", badgeIcon: TrendingUp,
price: "$12,999", subtitle: "Best for growing businesses", buttons: [
price: "$12,999", subtitle: "Best for growing businesses • 30-day satisfaction guarantee", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" },
],
@@ -268,7 +268,7 @@ export default function LandingPage() {
},
{
id: "enterprise", badge: "Enterprise", badgeIcon: Zap,
price: "$24,999+", subtitle: "For complex requirements", buttons: [
price: "$24,999+", subtitle: "For complex requirements • 30-day satisfaction guarantee", buttons: [
{ text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" },
],