Compare commits
53 Commits
version_19
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 60ed0a043a | |||
| 2af0109232 | |||
| de48ddff81 | |||
|
|
fb55c93fdc | ||
|
|
204b484f0b | ||
|
|
f8af90f221 | ||
| 2e335f0e97 | |||
|
|
8807109d53 | ||
| 83e97029de | |||
| 751599c092 | |||
| 79b86b58e2 | |||
| 7c397f9e36 | |||
| da08a53295 | |||
|
|
e5515579b9 | ||
| 9331ff714d | |||
|
|
50b75656d7 | ||
| e3772bd1f6 | |||
|
|
461f919a09 | ||
| 2f1a0ebb1e | |||
| 7217625144 | |||
| b8120b2f94 | |||
|
|
dd8207e618 | ||
| df597bf823 | |||
|
|
cc77bb21f0 | ||
| 7367813b18 | |||
| 6af3f6cee6 | |||
| 71aed245ee | |||
|
|
0a332c0ace | ||
| 6579f37982 | |||
|
|
bbdb8f7aeb | ||
| 7c666a679e | |||
| 0e38ca2c24 | |||
| ff5f4dc66a | |||
| 87932d46cc | |||
| f7ebce8095 | |||
| 5efc0937fb | |||
| 5895eb3e47 | |||
| 9df7d667b1 | |||
| ebb9a7c654 | |||
| 8ffb1e2f74 | |||
| 49d235676d | |||
| c9a04cfd55 | |||
| a39e92218a | |||
| c24076a43e | |||
| 2ba41d536a | |||
| 9e2a1fc137 | |||
| 8e3e629089 | |||
| c05e02e556 | |||
| ead77ab206 | |||
| 3c6a7a0dc6 | |||
| 0b748d6d5b | |||
| 4c12bcbd54 | |||
| b43961f607 |
@@ -13,6 +13,8 @@
|
||||
<meta name="description" content="YungHondo is the pulse of the African diaspora. Music, culture, and entrepreneurship rooted in our journey." />
|
||||
<meta property="og:description" content="YungHondo is the pulse of the African diaspora. Music, culture, and entrepreneurship rooted in our journey." />
|
||||
<meta name="twitter:description" content="YungHondo is the pulse of the African diaspora. Music, culture, and entrepreneurship rooted in our journey." />
|
||||
<meta property="og:image" content="https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1782071171201-ieej2njx.jpg" />
|
||||
<meta name="twitter:image" content="https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1782071171201-ieej2njx.jpg" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
@@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom';
|
||||
import Layout from './components/Layout';
|
||||
import HomePage from './pages/HomePage';
|
||||
|
||||
import ProductsPage from "@/pages/ProductsPage";
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/products" element={<ProductsPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import FooterBrand from '@/components/sections/footer/FooterBrand';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarInline from '@/components/ui/NavbarInline';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
|
||||
@@ -34,7 +34,9 @@ export default function Layout() {
|
||||
{
|
||||
"name": "Faq",
|
||||
"href": "#faq"
|
||||
}
|
||||
},
|
||||
{ name: "Products", href: "/products" },
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -53,59 +55,34 @@ export default function Layout() {
|
||||
<Outlet />
|
||||
</main>
|
||||
<SectionErrorBoundary name="footer">
|
||||
<FooterBrand
|
||||
brand="YungHondo"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
<FooterSimple
|
||||
brand="YungHondo"
|
||||
columns={[
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
title: "Socials",
|
||||
items: [
|
||||
{ label: "Instagram @YungHondoMusic", href: "https://instagram.com/YungHondoMusic" },
|
||||
{ label: "TikTok @YungHondoMusic", href: "https://tiktok.com/@YungHondoMusic" },
|
||||
{ label: "YouTube YungHondoMusic", href: "https://youtube.com/@YungHondoMusic" },
|
||||
]
|
||||
},
|
||||
{
|
||||
label: "Music",
|
||||
href: "#",
|
||||
title: "Music",
|
||||
items: [
|
||||
{ label: "Spotify YungHondoMusic", href: "https://spotify.com" },
|
||||
{ label: "Apple Music YungHondoMusic", href: "https://music.apple.com" },
|
||||
]
|
||||
},
|
||||
{
|
||||
label: "Community",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "https://twitter.com",
|
||||
},
|
||||
{
|
||||
label: "TikTok",
|
||||
href: "https://tiktok.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "Email Us", href: "mailto:contact@yunghondo.com" },
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyright="Representing those who left home to build a future."
|
||||
links={[]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</StyleProvider>
|
||||
);
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
|
||||
@import "tailwindcss";
|
||||
@import "./styles/masks.css";
|
||||
@import "./styles/animations.css";
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #080000;
|
||||
--card: #1e0d0d;
|
||||
--background: #060000;
|
||||
--card: #1d0d0d;
|
||||
--foreground: #ffe6e6;
|
||||
--primary-cta: #ff7a7a;
|
||||
--primary-cta-text: #080000;
|
||||
--secondary-cta: #1e0909;
|
||||
--primary-cta: #ff3d4a;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #1f0a0a;
|
||||
--secondary-cta-text: #ffe6e6;
|
||||
--accent: #7b4242;
|
||||
--background-accent: #65292c;
|
||||
--accent: #7b2d2d;
|
||||
--background-accent: #b8111f;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1rem;
|
||||
@@ -88,7 +88,7 @@
|
||||
--color-background-accent: var(--background-accent);
|
||||
|
||||
/* Fonts */
|
||||
--font-sans: 'Inter', sans-serif;
|
||||
--font-sans: 'Open Sans', sans-serif;
|
||||
--font-tight: "Inter Tight", sans-serif;
|
||||
--font-mono: monospace;
|
||||
|
||||
@@ -137,7 +137,7 @@ body {
|
||||
margin: 0;
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -150,7 +150,7 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-family: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
/* Default card/button styles. Template theme.css imports come after this file
|
||||
|
||||
@@ -6,26 +6,20 @@
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
|
||||
import QuoteSection from './HomePage/sections/Quote';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<AboutSection />
|
||||
<QuoteSection />
|
||||
|
||||
<MetricsSection />
|
||||
|
||||
<FeaturesSection />
|
||||
|
||||
<TestimonialsSection />
|
||||
|
||||
<FaqSection />
|
||||
|
||||
<ContactSection />
|
||||
</>
|
||||
|
||||
@@ -1,29 +1,114 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import type { LucideIcon } from "lucide-react";
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import { resolveIcon } from "@/utils/resolve-icon";
|
||||
|
||||
import React from 'react';
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
const items = [
|
||||
{
|
||||
icon: "Globe",
|
||||
title: "Diaspora Focus",
|
||||
description: "Global reach connecting our roots to modern soundscapes."
|
||||
},
|
||||
{
|
||||
icon: "TrendingUp",
|
||||
title: "Entrepreneurial Spirit",
|
||||
description: "Building sustainable ecosystems for artists and creators."
|
||||
},
|
||||
{
|
||||
icon: "Users",
|
||||
title: "Community First",
|
||||
description: "Creating spaces for growth, collaboration, and shared success."
|
||||
}
|
||||
];
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
type AboutFeaturesSplitProps = {
|
||||
tag: string;
|
||||
title: string;
|
||||
description: string;
|
||||
primaryButton?: { text: string; href: string };
|
||||
secondaryButton?: { text: string; href: string };
|
||||
items: { icon: string | LucideIcon; title: string; description: string }[];
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const AboutInline = () => {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="Our Philosophy"
|
||||
title="More Than Just Music"
|
||||
description="YungHondo represents the collective resilience of the diaspora. We bridge borders, defy industry standards, and empower the next generation of creative entrepreneurs."
|
||||
items={[
|
||||
{
|
||||
icon: "Globe", title: "Diaspora Focus", description: "Global reach connecting our roots to modern soundscapes."},
|
||||
{
|
||||
icon: "TrendingUp", title: "Entrepreneurial Spirit", description: "Building sustainable ecosystems for artists and creators."},
|
||||
{
|
||||
icon: "Users", title: "Community First", description: "Creating spaces for growth, collaboration, and shared success."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/glowing-digital-sphere-futuristic-environment_23-2152020906.jpg"
|
||||
<section aria-label="About section" className="relative py-20 overflow-hidden">
|
||||
<div className="absolute inset-0 z-0 pointer-events-none">
|
||||
<ImageOrVideo
|
||||
imageSrc="https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1781848928553-vtsks4rx.jpg"
|
||||
className="w-full h-full object-cover opacity-30"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-background via-transparent to-background" />
|
||||
</div>
|
||||
<div className="relative z-10 flex flex-col gap-8 md:gap-10 mx-auto w-content-width">
|
||||
<div className="flex flex-col items-center gap-2">
|
||||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||||
<p>{"Our Philosophy"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"More Than Just Music"}
|
||||
variant="fade"
|
||||
gradientText={true}
|
||||
tag="h2"
|
||||
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"YungHondo represents the collective resilience of the diaspora. We bridge borders, defy industry standards, and empower the next generation of creative entrepreneurs."}
|
||||
variant="fade"
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
|
||||
/>
|
||||
|
||||
{(undefined || undefined) && (
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
|
||||
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col md:flex-row md:items-stretch gap-5">
|
||||
<div className="flex flex-col justify-center gap-4 xl:gap-5 2xl:gap-6 p-6 xl:p-7 2xl:p-8 w-full md:w-4/10 2xl:w-35/100 card rounded">
|
||||
{items.map((item, index) => {
|
||||
const ItemIcon = resolveIcon(item.icon);
|
||||
return (
|
||||
<div key={item.title}>
|
||||
<div className="flex flex-col gap-2">
|
||||
<div className="flex items-center justify-center shrink-0 mb-1 size-10 primary-button rounded">
|
||||
<ItemIcon className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
|
||||
</div>
|
||||
<h3 className="text-2xl font-semibold">{item.title}</h3>
|
||||
<p className="text-base leading-snug">{item.description}</p>
|
||||
</div>
|
||||
{index < items.length - 1 && (
|
||||
<div className="mt-4 xl:mt-5 2xl:mt-6 border-b border-accent/40" />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
<div className="p-px w-full md:w-6/10 2xl:w-7/10 h-80 md:h-auto card rounded overflow-hidden">
|
||||
<div className="relative size-full">
|
||||
<ImageOrVideo imageSrc={"https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1781848199023-1n57m2t3.jpg"} className="absolute inset-0 object-cover rounded" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function AboutSection() {
|
||||
return (
|
||||
<div data-webild-section="about" id="about">
|
||||
<AboutInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,23 +1,61 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
/* eslint-disable */
|
||||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import Button from "@/components/ui/Button";
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
const primaryButton = {
|
||||
text: "Contact Us",
|
||||
href: ""
|
||||
};
|
||||
const secondaryButton = {
|
||||
text: "Listen to our Sound",
|
||||
href: "/"
|
||||
};
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
const ContactInline = () => {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Connect"
|
||||
text="Ready to work? Let's build something different."
|
||||
primaryButton={{
|
||||
text: "Contact Us", href: "mailto:hello@yunghondo.com"}}
|
||||
secondaryButton={{
|
||||
text: "Listen to our Sound", href: "#"}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
<section aria-label="Contact section" className="py-20 relative overflow-hidden">
|
||||
<div
|
||||
className="absolute inset-0 z-0 opacity-25 mix-blend-luminosity pointer-events-none"
|
||||
style={{
|
||||
backgroundImage: `url('https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1782069261624-8rif7upk.jpg')`,
|
||||
backgroundSize: 'cover',
|
||||
backgroundPosition: 'center',
|
||||
}}
|
||||
/>
|
||||
<div className="w-content-width mx-auto relative z-10">
|
||||
<ScrollReveal variant="fade-blur">
|
||||
<div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card">
|
||||
<div className="flex flex-col items-center gap-2">
|
||||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||||
<p>{"Connect"}</p>
|
||||
</div>
|
||||
|
||||
<TextAnimation
|
||||
text={"Ready to work? Let's build something different."}
|
||||
variant="fade"
|
||||
gradientText={true}
|
||||
tag="h2"
|
||||
className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
|
||||
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default function ContactSection() {
|
||||
return (
|
||||
<div data-webild-section="contact" id="contact">
|
||||
<ContactInline />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Common Questions"
|
||||
title="Frequently Asked"
|
||||
description="Clarifying our purpose and how you can join the culture."
|
||||
items={[
|
||||
{
|
||||
question: "What is YungHondo?", answer: "A music and culture house committed to amplifying the diaspora."},
|
||||
{
|
||||
question: "How can I collaborate?", answer: "Contact us through the form below with your project details."},
|
||||
{
|
||||
question: "Where are you based?", answer: "We operate globally with a strong base in London and Atlanta."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-collection-colourful-pencils_23-2148539120.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesBento from '@/components/sections/features/FeaturesBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesBento
|
||||
tag="Core Pillars"
|
||||
title="Built for Impact"
|
||||
description="Our work is centered on key areas that push the culture forward."
|
||||
features={[
|
||||
{
|
||||
title: "Cultural Preservation", description: "Keeping the history alive through modern musical expression.", bentoComponent: "orbiting-icons", centerIcon: "Music", orbitIcons: ["Globe", "Heart", "Zap", "Shield"]
|
||||
},
|
||||
{
|
||||
title: "Mentorship", description: "Real-time guidance for the next generation of black innovators.", bentoComponent: "chat-marquee", aiIcon: "User", userIcon: "MessageSquare", exchanges: [
|
||||
{ userMessage: "How do I start?", aiResponse: "Start by defining your story." },
|
||||
{ userMessage: "Need resources.", aiResponse: "Our network is here for you." }
|
||||
],
|
||||
placeholder: "Ask our community..."
|
||||
},
|
||||
{
|
||||
title: "Growth Milestones", description: "Tracking the progress of our community members.", bentoComponent: "checklist-timeline", heading: "Project Progress", subheading: "Milestones achieved together.", checklistItems: [
|
||||
{ label: "Founding", detail: "Completed" },
|
||||
{ label: "Scaling", detail: "In Progress" },
|
||||
{ label: "Global Expansion", detail: "Upcoming" }
|
||||
],
|
||||
completedLabel: "Milestone Met"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -5,6 +5,9 @@ import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import AvatarGroup from "@/components/ui/AvatarGroup";
|
||||
import { useState, useEffect } from "react";
|
||||
import { motion } from "motion/react";
|
||||
import { Mic } from "lucide-react";
|
||||
|
||||
const avatarsSrc = [
|
||||
"http://img.b2bpic.net/free-photo/studio-portrait-elegant-black-american-male-dressed-suit-grey-vignette-background_613910-1540.jpg",
|
||||
@@ -41,61 +44,104 @@ type HeroCenteredLogosProps = {
|
||||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||||
|
||||
const HeroInline = () => {
|
||||
const [stage, setStage] = useState<'dropping' | 'hit' | 'revealed'>('dropping');
|
||||
|
||||
useEffect(() => {
|
||||
const hitTimer = setTimeout(() => setStage('hit'), 800);
|
||||
const revealTimer = setTimeout(() => setStage('revealed'), 1100);
|
||||
return () => {
|
||||
clearTimeout(hitTimer);
|
||||
clearTimeout(revealTimer);
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<section aria-label="Hero section" className="relative h-svh flex flex-col mb-20">
|
||||
<motion.section
|
||||
aria-label="Hero section"
|
||||
className="relative h-svh w-full flex flex-col items-center justify-center overflow-hidden bg-[#060000] mb-20"
|
||||
animate={
|
||||
stage === 'hit'
|
||||
? { x: [-15, 15, -10, 10, -5, 5, 0], y: [-15, 15, -10, 10, -5, 5, 0] }
|
||||
: { x: 0, y: 0 }
|
||||
}
|
||||
transition={{ duration: 0.5 }}
|
||||
>
|
||||
<HeroBackgroundSlot />
|
||||
{!undefined && (
|
||||
<div className="absolute inset-0 z-0">
|
||||
<ImageOrVideo imageSrc={"http://img.b2bpic.net/free-photo/medium-shot-man-holding-bottle_23-2149213419.jpg"} className="size-full object-cover" />
|
||||
<div className="absolute inset-0 bg-background/80" />
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="relative z-10 flex-1 flex items-center justify-center">
|
||||
<div className="flex flex-col items-center gap-3 pt-8 w-content-width mx-auto text-center">
|
||||
<AvatarGroup avatarsSrc={avatarsSrc} label={"Join our community of visionaries"} size="lg" />
|
||||
|
||||
<TextAnimation
|
||||
text={"YungHondo"}
|
||||
variant="slide-up"
|
||||
gradientText={true}
|
||||
tag="h1"
|
||||
className="md:max-w-8/10 text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-center text-balance"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"Built Different."}
|
||||
variant="slide-up"
|
||||
gradientText={false}
|
||||
tag="h2"
|
||||
className="text-3xl md:text-5xl font-bold text-[#721c24] mt-2 tracking-tight uppercase"
|
||||
/>
|
||||
|
||||
<TextAnimation
|
||||
text={"Representing those who left home to build a future."}
|
||||
variant="slide-up"
|
||||
gradientText={false}
|
||||
tag="p"
|
||||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-balance"
|
||||
/>
|
||||
|
||||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||||
<Button text={"Listen Now"} href={"https://spotify.com"} variant="primary" />
|
||||
<Button text={"Watch Now"} href={"https://youtube.com"} variant="secondary" animationDelay={0.1} />
|
||||
</div>
|
||||
</div>
|
||||
{/* Background Image */}
|
||||
<div
|
||||
className="absolute inset-0 z-0 opacity-40 bg-cover bg-center bg-no-repeat pointer-events-none"
|
||||
style={{ backgroundImage: 'url("https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1781848554128-smggxzvg.jpg")' }}
|
||||
/>
|
||||
{/* Background Effects */}
|
||||
<div className="absolute inset-0 z-0 pointer-events-none">
|
||||
<div className="absolute top-[-10%] left-1/2 -translate-x-1/2 w-[1000px] h-[1000px] bg-[radial-gradient(circle_at_center,_rgba(255,61,74,0.15),_transparent_60%)]" />
|
||||
<div className="absolute bottom-[-10%] left-1/2 -translate-x-1/2 w-[800px] h-[800px] bg-[radial-gradient(circle_at_center,_rgba(123,45,45,0.2),_transparent_60%)]" />
|
||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_center,_transparent_30%,_#060000_100%)]" />
|
||||
</div>
|
||||
|
||||
<div className="relative z-10 w-content-width mx-auto pb-8 overflow-hidden mask-fade-x">
|
||||
<div className="flex w-max animate-marquee-horizontal" style={{ animationDuration: "30s" }}>
|
||||
{[...names, ...names, ...names, ...names].map((name, index) => (
|
||||
<div key={index} className="shrink-0 mx-3 px-4 py-2 card rounded">
|
||||
<span className="text-xl font-semibold whitespace-nowrap text-foreground/75">{name}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
{/* Mic Drop Container */}
|
||||
<div className="absolute top-[35%] left-1/2 -translate-x-1/2 -translate-y-1/2 z-20">
|
||||
<motion.div
|
||||
initial={{ y: '-100vh', rotate: -45 }}
|
||||
animate={
|
||||
stage === 'dropping'
|
||||
? { y: '-100vh', rotate: -45 }
|
||||
: { y: 0, rotate: 0 }
|
||||
}
|
||||
transition={{ type: 'spring', bounce: 0.6, duration: 0.8 }}
|
||||
>
|
||||
<Mic className="w-20 h-20 md:w-24 md:h-24 text-white drop-shadow-[0_0_30px_rgba(255,255,255,0.5)]" />
|
||||
</motion.div>
|
||||
|
||||
{/* Sound Waves */}
|
||||
{stage !== 'dropping' && (
|
||||
<>
|
||||
<motion.div
|
||||
className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 rounded-full border-[6px] border-[#ff3d4a]"
|
||||
initial={{ width: 80, height: 80, opacity: 0.8 }}
|
||||
animate={{ width: 2500, height: 2500, opacity: 0 }}
|
||||
transition={{ duration: 1.2, ease: 'easeOut' }}
|
||||
/>
|
||||
<motion.div
|
||||
className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 rounded-full border-[4px] border-[#7b2d2d]"
|
||||
initial={{ width: 80, height: 80, opacity: 0.6 }}
|
||||
animate={{ width: 2000, height: 2000, opacity: 0 }}
|
||||
transition={{ duration: 1.2, delay: 0.15, ease: 'easeOut' }}
|
||||
/>
|
||||
<motion.div
|
||||
className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 rounded-full border-[2px] border-white"
|
||||
initial={{ width: 80, height: 80, opacity: 0.4 }}
|
||||
animate={{ width: 1500, height: 1500, opacity: 0 }}
|
||||
transition={{ duration: 1.2, delay: 0.3, ease: 'easeOut' }}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Content Reveal */}
|
||||
<motion.div
|
||||
className="relative z-30 flex flex-col items-center mt-40 text-center w-content-width mx-auto"
|
||||
initial={{ opacity: 0, scale: 0.8, y: 40 }}
|
||||
animate={
|
||||
stage === 'revealed'
|
||||
? { opacity: 1, scale: 1, y: 0 }
|
||||
: { opacity: 0, scale: 0.8, y: 40 }
|
||||
}
|
||||
transition={{ duration: 0.7, ease: 'easeOut' }}
|
||||
>
|
||||
<h1 className="text-6xl sm:text-8xl md:text-[10rem] leading-none font-black text-white uppercase tracking-tighter drop-shadow-[0_0_50px_rgba(255,61,74,0.5)]">
|
||||
YungHondo
|
||||
</h1>
|
||||
<p className="mt-6 text-lg sm:text-2xl md:text-3xl text-white/90 font-bold uppercase tracking-[0.3em] drop-shadow-lg">
|
||||
Built Different.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-wrap justify-center gap-4 mt-12">
|
||||
<Button text="Listen Now" href="#listen" variant="primary" />
|
||||
<Button text="Watch Videos" href="#watch" variant="secondary" />
|
||||
</div>
|
||||
</motion.div>
|
||||
</motion.section>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsFeatureCards
|
||||
tag="Our Impact"
|
||||
title="Data Behind the Movement"
|
||||
description="Measuring success through community engagement and cultural footprint."
|
||||
metrics={[
|
||||
{
|
||||
value: "120+", title: "Lives Empowered", features: [
|
||||
"Mentorship programs", "Creative workshops", "Artist grants"],
|
||||
},
|
||||
{
|
||||
value: "500K+", title: "Streams Globally", features: [
|
||||
"Pan-African reach", "Organic growth", "Authentic storytelling"],
|
||||
},
|
||||
{
|
||||
value: "15", title: "Cities Connected", features: [
|
||||
"Global diaspora hubs", "Community events", "Strategic partnerships"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
21
src/pages/HomePage/sections/Quote.tsx
Normal file
21
src/pages/HomePage/sections/Quote.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
|
||||
export default function QuoteSection() {
|
||||
return (
|
||||
<div data-webild-section="quote" id="quote">
|
||||
<section className="relative w-full py-32 bg-background overflow-hidden">
|
||||
<div className="absolute top-0 left-1/4 w-96 h-96 bg-accent/20 rounded-full blur-[100px] pointer-events-none" />
|
||||
<div className="absolute bottom-0 right-1/4 w-96 h-96 bg-purple-900/20 rounded-full blur-[100px] pointer-events-none" />
|
||||
|
||||
<div className="relative z-10 max-w-5xl mx-auto px-6 text-center">
|
||||
<ScrollReveal variant="slide-up">
|
||||
<h2 className="text-4xl md:text-6xl lg:text-7xl font-bold text-foreground leading-tight">
|
||||
Every song is a chapter. Every performance is a statement. Every victory is for the diaspora.
|
||||
</h2>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="Voices of the Community"
|
||||
title="Authentic Experiences"
|
||||
description="What our collaborators and community members are saying about YungHondo."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Kwame Osei", role: "Artist", quote: "YungHondo changed my perspective on independence. Truly built different.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-shaved-head-male-dressed-native-viking-s-costume_613910-12250.jpg"},
|
||||
{
|
||||
name: "Amara Diallo", role: "Entrepreneur", quote: "The resources and community mentorship are unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-16027.jpg"},
|
||||
{
|
||||
name: "Jordan Smith", role: "Creative Director", quote: "Finally, a brand that stays true to the culture without compromise.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-male-with-curly-hair-dressed-jacket-eyeglasses_613910-567.jpg"},
|
||||
{
|
||||
name: "Elena Martinez", role: "Producer", quote: "YungHondo isn't just a label, it's a movement.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-with-suit-posing-black-white-medium-shot_23-2149411400.jpg"},
|
||||
{
|
||||
name: "Samuel Adeyemi", role: "Mentor", quote: "Deeply committed to upliftment. We're building the future.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-redhead-hipster-male-dressed-casual-clothes-with-glasses-full-beard-standing-with-crossed-arms-studio-isolated-dark-background_613910-20093.jpg"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
10
src/pages/ProductsPage.tsx
Normal file
10
src/pages/ProductsPage.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="AboutText"><section aria-label="About section" className=""><div className="w-content-width mx-auto flex flex-col gap-2 items-center"><TextAnimation text="Coming Soon" variant="fade" gradientText={false} tag="h2" className="text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance" /><div className="flex flex-wrap gap-3 justify-center mt-2 md:mt-3"><Button text="Get Alerts" href="#alerts" variant="primary" /><Button text="Learn More" variant="secondary" animationDelay={0.1} /></div></div></section></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user