3 Commits

Author SHA1 Message Date
24e41db984 Update src/app/page.tsx 2026-05-22 20:42:23 +00:00
55d8445360 Merge version_1 into main
Merge version_1 into main
2026-05-22 20:37:19 +00:00
dcb6527657 Merge version_1 into main
Merge version_1 into main
2026-05-22 20:36:48 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplit from '@/components/sections/hero/HeroSplit'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -196,30 +196,25 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterBaseCard
logoText="Why Roastery"
columns={[ columns={[
{ {
title: "Why Roastery", items: [ title: "Why Roastery", items: [
{ { label: "3137 King Abdullah Rd, Madinah", href: "#"},
label: "3137 King Abdullah Rd, Madinah", href: "#"}, { label: "057 017 1434", href: "tel:0570171434"},
{
label: "057 017 1434", href: "tel:0570171434"},
], ],
}, },
{ {
title: "Quick Links", items: [ title: "Quick Links", items: [
{ { label: "Menu", href: "#products"},
label: "Menu", href: "#products"}, { label: "Contact", href: "#contact"},
{
label: "Contact", href: "#contact"},
], ],
}, },
]} ]}
bottomLeftText="© 2024 Why Roastery"
bottomRightText="All rights reserved"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }