Update src/app/page.tsx

This commit is contained in:
2026-04-04 16:12:00 +00:00
parent d586faf75f
commit 7fb01a039b

View File

@@ -1,5 +1,3 @@
'use client';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
@@ -7,94 +5,87 @@ import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
const navItems = [{ name: 'Home', id: '/' }];
export default function Home() {
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
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">
<NavbarLayoutFloatingOverlay
navItems={navItems}
brandName="Oltre Studios"
/>
<NavbarLayoutFloatingOverlay navItems={navItems} brandName="Oltre Studios" />
</div>
<div id="hero" data-section="hero">
<HeroBillboard
background={{ variant: 'plain' }}
<HeroBillboard
background={{ variant: "plain" }}
title="Your brand looks smaller than it is. We fix that."
description="Premium brand playbooks and monthly social media retainers for small businesses and startups."
buttons={[{ text: 'Book a Free Call', href: '#contact' }]}
buttons={[{ text: "Book a Free Call", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg"
mediaAnimation="blur-reveal"
avatars={[
{ src: 'http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg', alt: 'Team member' },
{ src: 'http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg', alt: 'Team member' },
{ src: 'http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg', alt: 'Team member' },
{ src: 'http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg', alt: 'Team member' },
{ src: 'http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg', alt: 'Team member' }
{ src: "http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg", alt: "Team member" },
{ src: "http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg", alt: "Team member" },
{ src: "http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg", alt: "Team member" },
{ src: "http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg", alt: "Team member" },
{ src: "http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg", alt: "Team member" }
]}
marqueeItems={[
{ type: 'text', text: 'Strategy' },
{ type: 'text', text: 'Design' },
{ type: 'text', text: 'Growth' },
{ type: 'text', text: 'Content' },
{ type: 'text', text: 'Identity' }
{ type: "text", text: "Strategy" },
{ type: "text", text: "Design" },
{ type: "text", text: "Growth" },
{ type: "text", text: "Content" },
{ type: "text", text: "Identity" }
]}
/>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
<TextAbout
title="Oltre means beyond. That is exactly where we take your brand."
tag="Our Philosophy"
useInvertedBackground={false}
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyThree
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{ id: '1', title: 'Brand Playbooks', tags: ['Strategy', 'Visual Identity'], imageSrc: 'http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg', imageAlt: 'Brand Playbook Concept' },
{ id: '2', title: 'Monthly Social Media Retainers', tags: ['Content', 'Growth'], imageSrc: 'http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg', imageAlt: 'Social Media Retainer Strategy' }
]}
title="What we do"
description="Dedicated to elevating brands through strategy and consistency."
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Investment Packages"
description="Transparent pricing for high-impact creative services."
plans={[
{ id: 'p1', badge: 'Entry', price: '$2,500', subtitle: 'Essential branding foundation.', features: ['Brand Identity', 'Visual Guidelines', 'Logo Suite'] },
{ id: 'p2', badge: 'Premium', price: '$5,000', subtitle: 'Full brand playbook experience.', features: ['Everything in Entry', 'Brand Strategy', 'Content Pillars', 'Social Assets'] }
]}
features={[
{ id: "1", title: "Brand Playbooks", tags: ["Strategy", "Visual Identity"], imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-black-torn-paper_23-2151866954.jpg" },
{ id: "2", title: "Monthly Social Media Retainers", tags: ["Content", "Growth"], imageSrc: "http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
<ContactSplit
tag="Ready to go beyond?"
title="Book a Free Call"
description="Ready to scale? Call us at +91 91366 64922 to discuss your brand."
useInvertedBackground={false}
background={{ variant: 'plain' }}
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: 'Navigation', items: [{ label: 'Services', href: '#services' }, { label: 'About', href: '#about' }, { label: 'Contact', href: '#contact' }] },
{ title: 'Legal', items: [{ label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }] }
]}
<FooterBase
logoText="Oltre Studios"
columns={[
{ title: "Navigation", items: [{ label: "Services", href: "#services" }, { label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
/>
</div>
</ThemeProvider>