From ba2afef712082cdc04c9191f59c3717ae91dd321 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:58:47 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c634793..027c748 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,16 +17,19 @@ const inter = Inter({ export const metadata: Metadata = { title: "Webild - Ideas Become Websites", description: "Instantly generate, customize, and launch professional websites. No coding required. Transform your ideas into reality in minutes.", keywords: "website builder, no-code platform, web design, website creation, landing pages, portfolio builder", metadataBase: new URL("https://webild.io"), alternates: { - canonical: "https://webild.io"}, + canonical: "https://webild.io" + }, openGraph: { title: "Webild - Ideas Become Websites", description: "Instantly generate, customize, and launch professional websites without coding.", url: "https://webild.io", siteName: "Webild", type: "website", images: [ { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh5KliD4l7rWjrQZkOq7ZuPnH/a-beautiful-modern-website-landing-page--1772833274162-e53248a8.png", alt: "Webild website builder platform"}, + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh5KliD4l7rWjrQZkOq7ZuPnH/a-beautiful-modern-website-landing-page--1772833274162-e53248a8.png", alt: "Webild website builder platform" + }, ], }, twitter: { card: "summary_large_image", title: "Webild - Ideas Become Websites", description: "No-code website builder that transforms ideas into professional sites instantly.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh5KliD4l7rWjrQZkOq7ZuPnH/a-beautiful-modern-website-landing-page--1772833274162-e53248a8.png"], + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh5KliD4l7rWjrQZkOq7ZuPnH/a-beautiful-modern-website-landing-page--1772833274162-e53248a8.png" + ], }, robots: { index: true, @@ -1418,4 +1421,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From b09d8e3dd10a81373c8f84fd1c784ac1e8e78b43 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:58:48 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c52c67f..c3701e0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCar import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Twitter, Linkedin, Github } from 'lucide-react'; +import { Twitter, Linkedin, Github, Star } from 'lucide-react'; export default function LandingPage() { return ( @@ -112,8 +112,9 @@ export default function LandingPage() { title="What Our Users Say" description="Join thousands of satisfied users who have transformed their ideas into stunning websites." tag="Testimonials" + tagIcon={Star} gridVariant="uniform-all-items-equal" - animationType="slide-up" + animationType="blur-reveal" textboxLayout="default" useInvertedBackground={false} testimonials={[ @@ -144,7 +145,7 @@ export default function LandingPage() { tag="Help & Support" textboxLayout="default" useInvertedBackground={false} - faqsAnimation="slide-up" + faqsAnimation="blur-reveal" animationType="smooth" faqs={[ { @@ -195,4 +196,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 3869526442b1ef5cfed36dc2324a29f0e20877f9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 22:01:07 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 80 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 55 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c3701e0..0644faa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,10 +6,10 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou import TextAbout from '@/components/sections/about/TextAbout'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import { Twitter, Linkedin, Github, Star } from 'lucide-react'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Twitter, Linkedin, Github, Phone } from 'lucide-react'; export default function LandingPage() { return ( @@ -112,9 +112,8 @@ export default function LandingPage() { title="What Our Users Say" description="Join thousands of satisfied users who have transformed their ideas into stunning websites." tag="Testimonials" - tagIcon={Star} gridVariant="uniform-all-items-equal" - animationType="blur-reveal" + animationType="slide-up" textboxLayout="default" useInvertedBackground={false} testimonials={[ @@ -139,13 +138,12 @@ export default function LandingPage() {
-
-
-- 2.49.1