8 Commits

Author SHA1 Message Date
5340f7f6e5 Merge version_3 into main
Merge version_3 into main
2026-03-05 10:51:27 +00:00
c194fc9c6b Update src/app/page.tsx 2026-03-05 10:51:23 +00:00
28cef3d9b6 Update src/app/layout.tsx 2026-03-05 10:51:22 +00:00
ebfb8a018d Merge version_2 into main
Merge version_2 into main
2026-03-05 10:46:08 +00:00
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 13 additions and 48 deletions

View File

@@ -1,55 +1,21 @@
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 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -12,7 +12,7 @@ import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterBase from "@/components/sections/footer/FooterBase";
import { CheckCircle, Sparkles, Zap, TrendingUp, Users } from "lucide-react";
import { CheckCircle, Sparkles, Zap, TrendingUp, Users, Award } from "lucide-react";
export default function LandingPage() {
return (
@@ -45,7 +45,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="WEBILD"
description="Transform your vision into stunning digital experiences. Award-winning web agency crafting beautiful, high-converting websites that drive real results."
description="Transform your vision into stunning digital experiences. Award-winning web agency crafting beautiful, high-converting websites that drive real results. ✓ Trusted by 250+ clients"
buttons={[
{ text: "View Our Work", href: "#portfolio" },
{ text: "Start Your Project", href: "#pricing" },
@@ -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: "#" },
],
@@ -370,4 +370,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}