5 Commits

Author SHA1 Message Date
f4f11c004b Merge version_4 into main
Merge version_4 into main
2026-05-14 05:44:47 +00:00
d78a2dc84c Update src/app/page.tsx 2026-05-14 05:44:44 +00:00
86cc77cdd0 Merge version_3 into main
Merge version_3 into main
2026-05-14 05:40:37 +00:00
5ffca52ecb Update src/app/page.tsx 2026-05-14 05:40:34 +00:00
ddf4ab3c0a Merge version_2 into main
Merge version_2 into main
2026-05-14 05:39:50 +00:00

View File

@@ -2,16 +2,17 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Github, Twitter, Linkedin } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -42,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardScroll <HeroBillboardScroll
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
title="Idea to Website, Instantly" title="Launch Your Professional Website in Seconds"
description="Generate websites instantly and customize to perfection. Webild turns your vision into a professional production-grade site." description="Generate websites instantly and customize to perfection. Webild turns your vision into a professional production-grade site."
buttons={[{ text: "Get Started", href: "#contact" }]} buttons={[{ text: "Get Started", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/empty-dark-room-modern-futuristic-sci-fi-background-3d-illustration_35913-2392.jpg" imageSrc="http://img.b2bpic.net/free-photo/empty-dark-room-modern-futuristic-sci-fi-background-3d-illustration_35913-2392.jpg"
@@ -154,22 +155,23 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactSplit
tag="Contact" tag="Contact"
title="Ready to launch your vision?" title="Ready to launch your vision?"
description="Start building today with Webild." description="Start building today with Webild."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/abstract-dark-cube-structure_23-2149575975.jpg"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterCard
logoText="Webild" logoText="Webild"
columns={[ socialLinks={[
{ title: "Product", items: [{ label: "How It Works", href: "#" }, { label: "Features", href: "#features" }, { label: "Templates", href: "#templates" }] }, { icon: Github, href: "#", ariaLabel: "Github" },
{ title: "Company", items: [{ label: "Pricing", href: "#" }, { label: "Support", href: "#" }, { label: "Docs", href: "#" }] }, { icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }] } { icon: Linkedin, href: "#", ariaLabel: "LinkedIn" }
]} ]}
/> />
</div> </div>