Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 74b9f2067f | |||
| 24e9e49e44 | |||
| 0d57554d7e | |||
| 46879bc5b1 | |||
| 81bd20c928 | |||
| 00a224ff13 | |||
| 63c10873c7 | |||
| d454e6ff44 | |||
| 457f7e5061 | |||
| 99f2e46f03 | |||
| ebdf7c1b06 | |||
| d0d2e0af39 | |||
| bb8a0a8f0c | |||
| 2d343cfa07 |
@@ -7,8 +7,8 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
|
|||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import { Shield } from 'lucide-react';
|
import { Shield, Facebook, Instagram, Twitter } from 'lucide-react';
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
const navItems = [{ name: "Home", id: "/" }];
|
const navItems = [{ name: "Home", id: "/" }];
|
||||||
@@ -27,78 +27,82 @@ export default function Page() {
|
|||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered navItems={navItems} brandName="Webild" />
|
<NavbarStyleCentered navItems={navItems} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogo
|
<HeroLogo
|
||||||
logoText="Webild"
|
logoText="Oyster Bay"
|
||||||
description="Crafting exceptional digital experiences with precision and scale."
|
description="Experience coastal elegance at Oyster Bay, Nairobi. Fresh seafood, curated mixology, and fine dining at Valley Arcade."
|
||||||
buttons={[{ text: "Get Started" }]}
|
buttons={[{ text: "Book a Table" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="gallery" data-section="gallery">
|
<div id="gallery" data-section="gallery">
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
title="Our Core Features"
|
title="Our Culinary Art"
|
||||||
description="Cutting edge features designed for modern scaling."
|
description="Exquisite flavors meet coastal sophistication."
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
features={[{
|
features={[{
|
||||||
title: "Global Reach",
|
title: "Fresh Catch",
|
||||||
description: "Connect with users worldwide seamlessly.",
|
description: "Sustainably sourced from the deep blue.",
|
||||||
bentoComponent: "globe"
|
bentoComponent: "reveal-icon", icon: Shield
|
||||||
}]}
|
}]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
title="Key Metrics"
|
title="The Experience"
|
||||||
description="Transparent data for your growth."
|
description="Excellence in every detail."
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[{
|
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>
|
||||||
|
|
||||||
<div id="menu" data-section="menu">
|
<div id="menu" data-section="menu">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
title="Our Solutions"
|
title="Signature Menu"
|
||||||
description="Premium digital products."
|
description="Indulge in our curated selection."
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{ id: "1", name: "Standard", price: "$99", imageSrc: "/placeholder.svg" },
|
{ id: "1", name: "Signature Oysters", price: "KSH 2,500", imageSrc: "/placeholder.svg" },
|
||||||
{ id: "2", name: "Pro", price: "$199", imageSrc: "/placeholder.svg" },
|
{ id: "2", name: "Grilled Octopus", price: "KSH 3,200", imageSrc: "/placeholder.svg" },
|
||||||
{ id: "3", name: "Enterprise", price: "Custom", imageSrc: "/placeholder.svg" }
|
{ id: "3", name: "Coastal Platter", price: "KSH 8,500", imageSrc: "/placeholder.svg" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Ready to scale?"
|
tag="Visit Us"
|
||||||
title="Get in touch with us"
|
title="Reserve Your Seat"
|
||||||
description="We are here to help you achieve your goals."
|
description="Join us for an unforgettable dining experience at Valley Arcade."
|
||||||
buttons={[{ text: "Contact Sales" }]}
|
buttons={[{ text: "Book Online" }]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterCard
|
||||||
logoText="Webild"
|
logoText="Oyster Bay"
|
||||||
leftLink={{ text: "Privacy", href: "#" }}
|
copyrightText="© 2025 Oyster Bay Nairobi | All Rights Reserved"
|
||||||
rightLink={{ text: "Terms", href: "#" }}
|
socialLinks={[
|
||||||
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
|
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user