5 Commits

Author SHA1 Message Date
50c50ce6ba Update src/app/layout.tsx 2026-04-05 12:25:01 +00:00
2c661d6970 Update src/app/page.tsx 2026-04-05 12:24:29 +00:00
ffb31f5651 Update src/app/page.tsx 2026-04-05 12:23:55 +00:00
1728c4a31d Update src/app/page.tsx 2026-04-05 12:21:49 +00:00
0dc256ea70 Update src/app/layout.tsx 2026-04-05 12:21:49 +00:00
2 changed files with 42 additions and 60 deletions

View File

@@ -11,8 +11,8 @@ import { Cormorant_Garamond, Inter } from "next/font/google";
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'Oyster Bay Nairobi | Luxury Seafood Dining', title: 'TechCorp | Innovative Solutions',
description: 'Experience coastal elegance at Oyster Bay, Nairobi. Fresh seafood, curated mixology, and fine dining at Valley Arcade.', description: 'Empowering businesses with cutting-edge technology and data-driven insights.',
openGraph: { openGraph: {
"title": "Oyster Bay | The Ocean, Refined", "title": "Oyster Bay | The Ocean, Refined",
"description": "Nairobi's premier coastal luxury dining destination.", "description": "Nairobi's premier coastal luxury dining destination.",

View File

@@ -1,5 +1,4 @@
'use client'; 'use client';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogo from '@/components/sections/hero/HeroLogo'; import HeroLogo from '@/components/sections/hero/HeroLogo';
@@ -8,97 +7,80 @@ 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 FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Shield } from 'lucide-react'; import { Shield, Users } from 'lucide-react';
export default function Page() { export default function Page() {
const navItems = [{ name: "Home", id: "/" }]; const navItems = [{ name: "Home", id: "/" }];
return ( return (
<ThemeProvider <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered navItems={navItems} brandName="Webild" /> <NavbarStyleCentered navItems={navItems} brandName="TechCorp" />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogo <HeroLogo
logoText="Webild" logoText="Innovative Solutions"
description="Crafting exceptional digital experiences with precision and scale." description="Empowering businesses with cutting-edge technology and data-driven insights."
buttons={[{ text: "Get Started" }]} buttons={[{ text: "Get Started", href: "#contact" }]}
/> />
</div> </div>
<div id="gallery" data-section="gallery"> <div id="gallery" data-section="gallery">
<FeatureBento <FeatureBento
title="Our Core Features" title="Our Core Capabilities"
description="Cutting edge features designed for modern scaling." description="Delivering excellence through robust architecture and scalable design."
animationType="slide-up" animationType="blur-reveal"
useInvertedBackground={false}
textboxLayout="default" textboxLayout="default"
features={[{ useInvertedBackground={false}
title: "Global Reach", features={[
description: "Connect with users worldwide seamlessly.", { title: "Global Reach", description: "Scale your infrastructure worldwide with our edge network.", bentoComponent: "globe" },
bentoComponent: "globe" { title: "Performance Analytics", description: "Real-time monitoring for your critical workloads.", bentoComponent: "animated-bar-chart" }
}]} ]}
/> />
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<MetricCardOne <MetricCardOne
title="Key Metrics" title="Data Insights"
description="Transparent data for your growth." description="Quantifiable growth metrics for our partners."
gridVariant="uniform-all-items-equal" gridVariant="bento-grid"
animationType="slide-up" animationType="blur-reveal"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={true}
metrics={[{ metrics={[
id: "1", value: "99.9%", title: "Uptime", description: "Always online.", icon: Shield { id: "1", value: "99.9%", title: "Uptime", description: "High availability SLA", icon: Shield },
}]} { id: "2", value: "2M+", title: "Users", description: "Monthly active users", icon: Users }
]}
/> />
</div> </div>
<div id="menu" data-section="menu"> <div id="menu" data-section="menu">
<ProductCardOne <ProductCardOne
title="Our Solutions" title="Service Tiers"
description="Premium digital products." description="Tailored packages for every business scale."
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: "p1", name: "Basic", price: "$99", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" },
{ id: "2", name: "Pro", price: "$199", imageSrc: "/placeholder.svg" }, { id: "p2", name: "Pro", price: "$299", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" },
{ id: "3", name: "Enterprise", price: "Custom", imageSrc: "/placeholder.svg" } { id: "p3", name: "Enterprise", price: "Contact Us", imageSrc: "https://images.unsplash.com/photo-1593642532400-2682810df593" }
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactCTA
tag="Ready to scale?" tag="Ready to start?"
title="Get in touch with us" title="Get in Touch"
description="We are here to help you achieve your goals." description="Contact our expert team to discuss your project requirements."
buttons={[{ text: "Contact Sales" }]} buttons={[{ text: "Contact Us", href: "#contact" }]}
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 <FooterLogoReveal
logoText="Webild" logoText="TechCorp"
leftLink={{ text: "Privacy", href: "#" }} leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms", href: "#" }} rightLink={{ text: "Terms of Service", href: "#" }}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>