Merge version_1 into main #7

Merged
bender merged 2 commits from version_1 into main 2026-04-04 16:17:31 +00:00
2 changed files with 14 additions and 77 deletions

View File

@@ -11,8 +11,8 @@ import { Georgia } from "next/font/google";
export const metadata: Metadata = {
title: 'Oltre Studios | Brand Playbooks & Social Media Retainers',
description: 'Premium brand playbooks and monthly social media retainers for small businesses and startups.',
title: 'Welcome to Webild',
description: 'Your ultimate component library for fast website builds.',
openGraph: {
"title": "Oltre Studios | Branding & Social Media",
"siteName": "Oltre Studios",

View File

@@ -1,98 +1,35 @@
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
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 { Mail, Zap, Shield } from 'lucide-react';
export default function Home() {
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Services', id: '#services' },
{ name: 'About', id: '#about' },
{ name: 'Contact', id: '#contact' }
];
const navItems = [{ name: "Home", id: "/" }];
export default function Page() {
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="hover-magnetic" 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} />
</div>
<div id="hero" data-section="hero">
<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" }]}
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" }
]}
marqueeItems={[
{ type: "text", text: "Strategy" },
{ type: "text", text: "Design" },
{ type: "text", text: "Growth" },
{ type: "text", text: "Content" },
{ type: "text", text: "Identity" }
]}
/>
<HeroBillboard title="Welcome to Our Platform" description="Build faster with our modular component library." background={{ variant: "animated-grid" }} />
</div>
<div id="about" data-section="about">
<TextAbout
title="Oltre means beyond. That is exactly where we take your brand."
tag="Our Philosophy"
useInvertedBackground={false}
/>
<TextAbout title="About Us" />
</div>
<div id="services" data-section="services">
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
title="What we do"
description="Dedicated to elevating brands through strategy and consistency."
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" }
]}
/>
<FeatureCardTwentyThree title="Our Services" description="We provide top-notch solutions." animationType="slide-up" textboxLayout="split" features={[{ id: "1", title: "Service A", tags: ["Fast"] }, { id: "2", title: "Service B", tags: ["Reliable"] }]} />
</div>
<div id="contact" data-section="contact">
<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."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/pregnant-woman-black-clothes-stands-grey-wall_8353-7850.jpg"
mediaAnimation="slide-up"
/>
<ContactSplit tag="Contact" title="Get in Touch" description="Reach out for any inquiries." background={{ variant: "plain" }} mediaAnimation="slide-up" />
</div>
<div id="footer" data-section="footer">
<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: "#" }] }
]}
/>
<FooterBase logoText="Webild" columns={[{ title: "Company", items: [{ label: "About", href: "/about" }] }]} />
</div>
</ThemeProvider>
);