Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -6,9 +6,9 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -26,16 +26,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu", id: "/menu"},
|
||||
{
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Reserve", id: "/reservation"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reserve", id: "/reservation" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Al Rimal"
|
||||
/>
|
||||
@@ -50,12 +45,8 @@ export default function LandingPage() {
|
||||
title="Our Milestones"
|
||||
description="Celebrating years of culinary excellence."
|
||||
metrics={[
|
||||
{
|
||||
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: "a1", value: "15+", title: "Years", description: "Of fine dining service", icon: Award },
|
||||
{ id: "a2", value: "50+", title: "Chefs", description: "Culinary masters", icon: Award },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -66,7 +57,8 @@ export default function LandingPage() {
|
||||
title="Our Mission"
|
||||
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>
|
||||
@@ -77,28 +69,21 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Restaurant", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Menu", href: "/menu"},
|
||||
{
|
||||
label: "Reserve", href: "/reservation"},
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Reserve", href: "/reservation" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "+971 4 000 0000", href: "tel:+97140000000"},
|
||||
{
|
||||
label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae"},
|
||||
{ label: "+971 4 000 0000", href: "tel:+97140000000" },
|
||||
{ label: "hello@alrimal.ae", href: "mailto:hello@alrimal.ae" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user