2 Commits

Author SHA1 Message Date
d421274c4d Update src/app/page.tsx 2026-05-13 02:50:55 +00:00
2fd2e9bc0f Merge version_2 into main
Merge version_2 into main
2026-05-13 02:48:22 +00:00

View File

@@ -3,15 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Heart, Shield, Microscope, Cpu } from "lucide-react";
import { Heart, Shield, Microscope, Cpu, Mail, Phone, MapPin, Instagram, Facebook, Twitter } from "lucide-react";
export default function LandingPage() {
return (
@@ -52,12 +49,13 @@ export default function LandingPage() {
]}
imageSrc="http://img.b2bpic.net/free-photo/newborn-baby-with-parents_23-2151983853.jpg"
avatarText="موثوق من أكثر من 500 عائلة"
buttonAnimation="slide-up"
/>
</div>
<div id="lab" data-section="lab">
<FeatureCardTen
animationType="blur-reveal"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
title="مختبرنا الطبي المتطور"
@@ -108,13 +106,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterCard
logoText="مركز شموع"
leftLink={{ text: "اتصل بنا", href: "#contact" }}
rightLink={{ text: "سياسة الخصوصية", href: "#" }}
socialLinks={[
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}