Update src/app/page.tsx
This commit is contained in:
@@ -7,8 +7,8 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Shield } from 'lucide-react';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Shield, Facebook, Instagram, Twitter, Linkedin } from 'lucide-react';
|
||||
|
||||
export default function Page() {
|
||||
const navItems = [{ name: "Home", id: "/" }];
|
||||
@@ -27,27 +27,27 @@ export default function Page() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered navItems={navItems} brandName="Webild" />
|
||||
<NavbarStyleCentered navItems={navItems} brandName="Oyster Bay" />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Webild"
|
||||
description="Crafting exceptional digital experiences with precision and scale."
|
||||
buttons={[{ text: "Get Started" }]}
|
||||
logoText="Oyster Bay"
|
||||
description="Experience coastal elegance at Oyster Bay, Nairobi. Fresh seafood, curated mixology, and fine dining at Valley Arcade."
|
||||
buttons={[{ text: "Book a Table" }]
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<FeatureBento
|
||||
title="Our Core Features"
|
||||
description="Cutting edge features designed for modern scaling."
|
||||
title="Our Culinary Art"
|
||||
description="Exquisite flavors meet coastal sophistication."
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
features={[{
|
||||
title: "Global Reach",
|
||||
description: "Connect with users worldwide seamlessly.",
|
||||
title: "Fresh Catch",
|
||||
description: "Sustainably sourced from the deep blue.",
|
||||
bentoComponent: "globe"
|
||||
}]}
|
||||
/>
|
||||
@@ -55,50 +55,54 @@ export default function Page() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<MetricCardOne
|
||||
title="Key Metrics"
|
||||
description="Transparent data for your growth."
|
||||
title="The Experience"
|
||||
description="Excellence in every detail."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[{
|
||||
id: "1", value: "99.9%", title: "Uptime", description: "Always online.", icon: Shield
|
||||
id: "1", value: "5★", title: "Quality", description: "Unrivaled freshness.", icon: Shield
|
||||
}]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
title="Our Solutions"
|
||||
description="Premium digital products."
|
||||
title="Signature Menu"
|
||||
description="Indulge in our curated selection."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Standard", price: "$99", imageSrc: "/placeholder.svg" },
|
||||
{ id: "2", name: "Pro", price: "$199", imageSrc: "/placeholder.svg" },
|
||||
{ id: "3", name: "Enterprise", price: "Custom", imageSrc: "/placeholder.svg" }
|
||||
{ id: "1", name: "Signature Oysters", price: "KSH 2,500", imageSrc: "/placeholder.svg" },
|
||||
{ id: "2", name: "Grilled Octopus", price: "KSH 3,200", imageSrc: "/placeholder.svg" },
|
||||
{ id: "3", name: "Coastal Platter", price: "KSH 8,500", imageSrc: "/placeholder.svg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Ready to scale?"
|
||||
title="Get in touch with us"
|
||||
description="We are here to help you achieve your goals."
|
||||
buttons={[{ text: "Contact Sales" }]}
|
||||
tag="Visit Us"
|
||||
title="Reserve Your Seat"
|
||||
description="Join us for an unforgettable dining experience at Valley Arcade."
|
||||
buttons={[{ text: "Book Online" }]
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Webild"
|
||||
leftLink={{ text: "Privacy", href: "#" }}
|
||||
rightLink={{ text: "Terms", href: "#" }}
|
||||
<FooterCard
|
||||
logoText="Oyster Bay"
|
||||
copyrightText="© 2025 Oyster Bay Nairobi | All Rights Reserved"
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user