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"
@@ -26,16 +26,11 @@ export default function LandingPage() {
<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"},
{
name: "Reserve", id: "/reservation"},
{
name: "Contact", id: "/contact"},
]} ]}
brandName="Al Rimal" brandName="Al Rimal"
/> />
@@ -50,12 +45,8 @@ export default function LandingPage() {
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>
@@ -66,7 +57,8 @@ export default function LandingPage() {
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>
@@ -77,28 +69,21 @@ export default function LandingPage() {
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: [ title: "Legal", items: [
{ { label: "Privacy Policy", href: "#" },
label: "Privacy Policy", href: "#"}, { label: "Terms of Service", href: "#" },
{
label: "Terms of Service", href: "#"},
], ],
}, },
{ {
title: "Contact", items: [ title: "Contact", items: [
{ { label: "+971 4 000 0000", href: "tel:+97140000000" },
label: "+971 4 000 0000", href: "tel:+97140000000"}, { label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae" },
{
label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae"},
], ],
}, },
]} ]}