Update src/app/page.tsx

This commit is contained in:
2026-05-05 05:45:27 +00:00
parent e453d567eb
commit e0e58f4203

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
@@ -184,13 +184,17 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseReveal
logoText="LuxuryParts"
leftLink={{ text: "سياسة الخصوصية", href: "#" }}
rightLink={{ text: "اتصل بنا", href: "#contact" }}
columns={[
{ title: "عن الشركة", items: [{ label: "من نحن", href: "#about" }, { label: "رؤيتنا", href: "#" }] },
{ title: "الخدمات", items: [{ label: "المنتجات", href: "#products" }, { label: "الأسئلة الشائعة", href: "#faq" }] },
{ title: "المساعدة", items: [{ label: "تواصل معنا", href: "#contact" }, { label: "سياسة الخصوصية", href: "#" }] }
]}
copyrightText="© 2024 LuxuryParts. جميع الحقوق محفوظة."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}