From 933ac65b88afab6fb549c0bc348165ef1e54264d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 03:06:03 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 94 +++++++++++++----------------------------------- 1 file changed, 25 insertions(+), 69 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a1b6e7..49341e5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,8 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; export default function LandingPage() { return ( @@ -33,6 +35,7 @@ export default function LandingPage() { navItems={[ { name: "Story", id: "about" }, { name: "Menu", id: "menu" }, + { name: "Admin", id: "admin-dashboard" }, { name: "Reservations", id: "reserve" }, ]} brandName="EMBER" @@ -54,6 +57,25 @@ export default function LandingPage() { /> +
+ + +

Staff scheduling and shift analytics are essential for maintaining the Ember experience. Monitor coverage, staff performance metrics, and automated reporting features from this central dashboard.

+
+
+
- - -
- -
- -
- -
-
@@ -161,25 +134,8 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/selective-focus-shot-table-setting-with-wine-glasses-plates_181624-60149.jpg" logoText="EMBER" columns={[ - { - title: "Navigate", items: [ - { label: "Story", href: "#about" }, - { label: "Menu", href: "#menu" }, - { label: "Reserve", href: "#reserve" }, - ], - }, - { - title: "Connect", items: [ - { label: "Instagram", href: "#" }, - { label: "Newsletter", href: "#" }, - ], - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - ], - }, + { title: "Navigate", items: [{ label: "Story", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Admin", href: "#admin-dashboard" }] }, + { title: "Connect", items: [{ label: "Instagram", href: "#" }] }, ]} copyrightText="© 2025 Ember Fine Dining. All rights reserved." /> @@ -187,4 +143,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}