Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-11 14:36:06 +00:00

View File

@@ -6,9 +6,9 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import LegalSection from '@/components/legal/LegalSection'; import LegalSection from '@/components/legal/LegalSection';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { Award } from "lucide-react"; import { Award, Clock, ShoppingBag } from "lucide-react";
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -23,87 +23,72 @@ export default function LandingPage() {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", id: "/"}, { name: "Menu", id: "/menu" },
{ { name: "About", id: "/about" },
name: "Menu", id: "/menu"}, { name: "Reserve", id: "/reservation" },
{ { name: "Contact", id: "/contact" },
name: "About", id: "/about"}, ]}
{ brandName="Al Rimal"
name: "Reserve", id: "/reservation"}, />
{ </div>
name: "Contact", id: "/contact"},
]}
brandName="Al Rimal"
/>
</div>
<div id="metric" data-section="metric"> <div id="metric" data-section="metric">
<MetricCardOne <MetricCardOne
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
title="Our Milestones" title="Our Milestones"
description="Celebrating years of culinary excellence." description="Celebrating years of culinary excellence."
metrics={[ metrics={[
{ { id: "a1", value: "15+", title: "Years", description: "Of fine dining service", icon: Award },
id: "a1", value: "15+", title: "Years", description: "Of fine dining service", icon: Award, { id: "a2", value: "50+", title: "Chefs", description: "Culinary masters", icon: Award },
}, ]}
{ />
id: "a2", value: "50+", title: "Chefs", description: "Culinary masters", icon: Award, </div>
},
]}
/>
</div>
<div id="legal" data-section="legal"> <div id="legal" data-section="legal">
<LegalSection <LegalSection
layout="section" layout="section"
title="Our Mission" title="Our Mission"
sections={[ sections={[
{ {
heading: "Our Heritage", content: "Al Rimal was founded on the principle of bringing the hospitality of Arabia to the global stage."}, heading: "Our Heritage", content: [{ type: "paragraph", text: "Al Rimal was founded on the principle of bringing the hospitality of Arabia to the global stage." }]
]} },
/> ]}
</div> />
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="Al Rimal" logoText="Al Rimal"
columns={[ columns={[
{ {
title: "Restaurant", items: [ title: "Restaurant", items: [
{ { label: "About Us", href: "/about" },
label: "About Us", href: "/about"}, { label: "Menu", href: "/menu" },
{ { label: "Reserve", href: "/reservation" },
label: "Menu", href: "/menu"}, ],
{ },
label: "Reserve", href: "/reservation"}, {
], title: "Legal", items: [
}, { label: "Privacy Policy", href: "#" },
{ { label: "Terms of Service", href: "#" },
title: "Legal", items: [ ],
{ },
label: "Privacy Policy", href: "#"}, {
{ title: "Contact", items: [
label: "Terms of Service", href: "#"}, { label: "+971 4 000 0000", href: "tel:+97140000000" },
], { label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae" },
}, ],
{ },
title: "Contact", items: [ ]}
{ />
label: "+971 4 000 0000", href: "tel:+97140000000"}, </div>
{
label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae"},
],
},
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );