2 Commits

Author SHA1 Message Date
e400081216 Update src/app/page.tsx 2026-04-25 08:41:30 +00:00
06692874c6 Merge version_3 into main
Merge version_3 into main
2026-04-25 08:39:59 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
@@ -146,26 +146,27 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBaseCard
logoText="Al Rafid Insulation"
columns={[
{
items: [
{ label: "Our Services", href: "#services" },
title: "Navigation", items: [
{ label: "Services", href: "#services" },
{ label: "About Us", href: "#about" },
{ label: "Testimonials", href: "#testimonials" },
]
},
{
items: [
{ label: "Support", href: "#faq" },
title: "Support", items: [
{ label: "Help Center", href: "#faq" },
{ label: "Contact", href: "#contact" },
]
}
]}
copyrightText="© 2025 Al Rafid Insulation | All rights reserved"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}