Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #9.
This commit is contained in:
2026-05-09 11:28:43 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -17,7 +17,7 @@ export default function ContactPage() {
<NavbarLayoutFloatingOverlay navItems={navItems} brandName="Webild" />
</div>
<div id="contact" data-section="contact">
<ContactText text="Reach out to our team today." background={{ variant: "gradient-bars" }} />
<ContactText text="Reach out to our team today." background={{ variant: "gradient-bars" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="Webild" columns={[{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]} />

View File

@@ -9,7 +9,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Shield, Zap, Target } from 'lucide-react';
import { Shield, Zap } from 'lucide-react';
const navItems = [
{ name: "Home", id: "/" },
@@ -27,22 +27,22 @@ export default function Page() {
<HeroBillboard title="Welcome to Our Platform" description="We build innovative digital solutions." background={{ variant: "animated-grid" }} />
</div>
<div id="trust" data-section="trust">
<SocialProofOne names={["Company A", "Company B", "Company C"]} title="Trusted by Leaders" description="Our partners are the backbone of our success." textboxLayout="default" />
<SocialProofOne names={["Company A", "Company B", "Company C"]} title="Trusted by Leaders" description="Our partners are the backbone of our success." textboxLayout="default" useInvertedBackground={false} />
</div>
<div id="manifesto" data-section="manifesto">
<AboutMetric title="Our Impact" metrics={[{ icon: Shield, label: "Trust", value: "100%" }, { icon: Zap, label: "Speed", value: "2x" }]} metricsAnimation="slide-up" />
<AboutMetric title="Our Impact" metrics={[{ icon: Shield, label: "Trust", value: "100%" }, { icon: Zap, label: "Speed", value: "2x" }]} metricsAnimation="slide-up" useInvertedBackground={false} />
</div>
<div id="servicios" data-section="servicios">
<FeatureCardThree title="Our Services" description="We provide high-quality services for your business." features={[{ title: "Strategy", description: "Planning your growth", imageSrc: "/service1.jpg" }, { title: "Development", description: "Building your vision", imageSrc: "/service2.jpg" }]} gridVariant="bento-grid" animationType="blur-reveal" textboxLayout="default" />
<FeatureCardThree title="Our Services" description="We provide high-quality services for your business." features={[{ title: "Strategy", description: "Planning your growth", imageSrc: "/service1.jpg" }, { title: "Development", description: "Building your vision", imageSrc: "/service2.jpg" }]} gridVariant="bento-grid" animationType="blur-reveal" textboxLayout="default" useInvertedBackground={false} />
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix title="Client Stories" description="Hear what our clients have to say about us." testimonials={[{ id: "1", name: "John Doe", handle: "@johndoe", testimonial: "Amazing results!" }, { id: "2", name: "Jane Smith", handle: "@janesmith", testimonial: "Professional and reliable." }]} animationType="slide-up" textboxLayout="default" />
<TestimonialCardSix title="Client Stories" description="Hear what our clients have to say about us." testimonials={[{ id: "1", name: "John Doe", handle: "@johndoe", testimonial: "Amazing results!" }, { id: "2", name: "Jane Smith", handle: "@janesmith", testimonial: "Professional and reliable." }]} animationType="slide-up" textboxLayout="default" useInvertedBackground={false} />
</div>
<div id="blog" data-section="blog">
<BlogCardThree title="Latest Insights" description="Read our latest posts on tech and innovation." animationType="blur-reveal" textboxLayout="default" blogs={[{ id: "1", category: "Tech", title: "Future of AI", excerpt: "How AI changes everything.", imageSrc: "/blog1.jpg", authorName: "Admin", authorAvatar: "/avatar1.jpg", date: "2023-10-01" }, { id: "2", category: "Web", title: "Next.js Tips", excerpt: "Optimize your apps.", imageSrc: "/blog2.jpg", authorName: "Dev", authorAvatar: "/avatar2.jpg", date: "2023-10-02" }]} />
<BlogCardThree title="Latest Insights" description="Read our latest posts on tech and innovation." animationType="blur-reveal" textboxLayout="default" useInvertedBackground={false} blogs={[{ id: "1", category: "Tech", title: "Future of AI", excerpt: "How AI changes everything.", imageSrc: "/blog1.jpg", authorName: "Admin", authorAvatar: "/avatar1.jpg", date: "2023-10-01" }, { id: "2", category: "Web", title: "Next.js Tips", excerpt: "Optimize your apps.", imageSrc: "/blog2.jpg", authorName: "Dev", authorAvatar: "/avatar2.jpg", date: "2023-10-02" }]} />
</div>
<div id="contact" data-section="contact">
<ContactText text="Let's build something great together." background={{ variant: "gradient-bars" }} />
<ContactText text="Let's build something great together." background={{ variant: "gradient-bars" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal logoText="Webild" columns={[{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} />