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