14 Commits

Author SHA1 Message Date
74b9f2067f Update src/app/page.tsx 2026-04-05 12:22:51 +00:00
24e9e49e44 Update src/app/page.tsx 2026-04-05 12:22:20 +00:00
0d57554d7e Update src/app/page.tsx 2026-04-05 12:21:50 +00:00
46879bc5b1 Update src/app/page.tsx 2026-04-05 12:21:21 +00:00
81bd20c928 Update src/app/page.tsx 2026-04-05 12:20:53 +00:00
00a224ff13 Update src/app/page.tsx 2026-04-05 12:20:31 +00:00
63c10873c7 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:44:47 +00:00
d454e6ff44 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:44:14 +00:00
457f7e5061 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:43:46 +00:00
99f2e46f03 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:38:18 +00:00
ebdf7c1b06 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:37:46 +00:00
d0d2e0af39 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:37:14 +00:00
bb8a0a8f0c Merge version_1 into main
Merge version_1 into main
2026-04-05 11:36:43 +00:00
2d343cfa07 Merge version_1 into main
Merge version_1 into main
2026-04-05 11:36:14 +00:00

View File

@@ -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 } from 'lucide-react';
export default function Page() {
const navItems = [{ name: "Home", id: "/" }];
@@ -27,78 +27,82 @@ export default function Page() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered navItems={navItems} brandName="Webild" />
<NavbarStyleCentered navItems={navItems} />
</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.",
bentoComponent: "globe"
title: "Fresh Catch",
description: "Sustainably sourced from the deep blue.",
bentoComponent: "reveal-icon", icon: Shield
}]}
/>
</div>
<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>