4 Commits

Author SHA1 Message Date
80ee9a145e Update src/app/page.tsx 2026-03-05 10:46:04 +00:00
a5ef3dea66 Update src/app/layout.tsx 2026-03-05 10:46:03 +00:00
d8bb499b44 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:43:55 +00:00
5498c49aaa Merge version_1 into main
Merge version_1 into main
2026-03-05 10:42:23 +00:00
2 changed files with 9 additions and 45 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: { title: "Webild Studio - Web Design & Development", description: "Award-winning web agency crafting beautiful, high-converting websites that drive real results."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -248,7 +248,7 @@ export default function LandingPage() {
plans={[ plans={[
{ {
id: "starter", badge: "Starter", badgeIcon: Sparkles, 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: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" }, { text: "Learn More", href: "#" },
], ],
@@ -258,7 +258,7 @@ export default function LandingPage() {
}, },
{ {
id: "professional", badge: "Professional", badgeIcon: TrendingUp, 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: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" }, { text: "Learn More", href: "#" },
], ],
@@ -268,7 +268,7 @@ export default function LandingPage() {
}, },
{ {
id: "enterprise", badge: "Enterprise", badgeIcon: Zap, 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: "Get Started", href: "#contact" },
{ text: "Learn More", href: "#" }, { text: "Learn More", href: "#" },
], ],