3 Commits

Author SHA1 Message Date
dd7acf18bd Update src/app/page.tsx 2026-05-16 20:50:51 +00:00
8ff85c67ff Update src/app/page.tsx 2026-05-16 20:50:19 +00:00
2197eb75d8 Merge version_3 into main
Merge version_3 into main
2026-05-16 20:49:19 +00:00

View File

@@ -3,16 +3,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { CheckCircle, Shield, Zap, Mail, Phone, MapPin, Search } from "lucide-react"; import { CheckCircle, Shield, Zap, Search } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -161,27 +161,24 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactText
tag="Contact Us" text="Get in Touch: Reach us at contact@efindcom.com for any inquiries or support."
title="Get in Touch"
description="Have questions or suggestions? We'd love to hear from you."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterBaseCard
logoText="efindcom" logoText="efindcom"
copyrightText="© 2025 efindcom | Search Engine" columns={[
socialLinks={[ { title: "Product", items: [{ label: "Features", href: "#features" }, { label: "Sites", href: "#all-sites" }] },
{ icon: Mail, href: "mailto:hello@efindcom.com", ariaLabel: "Email" }, { title: "Company", items: [{ label: "Blog", href: "#blog" }, { label: "FAQ", href: "#faq" }] },
{ icon: Phone, href: "tel:+1234567890", ariaLabel: "Phone" }, { title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
{ icon: MapPin, href: "#", ariaLabel: "Address" }
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }