Merge version_1 into main #9

Merged
bender merged 2 commits from version_1 into main 2026-04-05 12:23:29 +00:00
2 changed files with 53 additions and 74 deletions

View File

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

View File

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