Compare commits

..

20 Commits

Author SHA1 Message Date
60ed0a043a Merge version_39_1782070281257 into main
Merge version_39_1782070281257 into main
2026-06-21 19:46:26 +00:00
2af0109232 Update index.html 2026-06-21 19:46:16 +00:00
de48ddff81 Merge version_39_1782070281257 into main
Merge version_39_1782070281257 into main
2026-06-21 19:33:51 +00:00
kudinDmitriyUp
fb55c93fdc Bob AI: fix build errors (attempt 1) 2026-06-21 19:33:15 +00:00
kudinDmitriyUp
204b484f0b Bob AI: Populate src/pages/ProductsPage.tsx (snippet builder, 1 sections) 2026-06-21 19:32:38 +00:00
kudinDmitriyUp
f8af90f221 Bob AI: Add products page 2026-06-21 19:32:07 +00:00
2e335f0e97 Merge version_34_1782069262927 into main
Merge version_34_1782069262927 into main
2026-06-21 19:15:43 +00:00
kudinDmitriyUp
8807109d53 Bob AI: Added faded background image to the contact section 2026-06-21 19:15:03 +00:00
83e97029de Merge version_33_1781849267164 into main
Merge version_33_1781849267164 into main
2026-06-19 06:08:04 +00:00
751599c092 Update src/pages/HomePage/sections/Contact.tsx 2026-06-19 06:08:00 +00:00
79b86b58e2 Merge version_32_1781849212537 into main
Merge version_32_1781849212537 into main
2026-06-19 06:07:11 +00:00
7c397f9e36 Update src/pages/HomePage/sections/Contact.tsx 2026-06-19 06:07:04 +00:00
da08a53295 Merge version_31_1781848930327 into main
Merge version_31_1781848930327 into main
2026-06-19 06:03:42 +00:00
kudinDmitriyUp
e5515579b9 Bob AI: Add faded background image to the About section 2026-06-19 06:02:57 +00:00
9331ff714d Merge version_30_1781848555183 into main
Merge version_30_1781848555183 into main
2026-06-19 05:57:11 +00:00
kudinDmitriyUp
50b75656d7 Bob AI: Update hero background image with slight fade 2026-06-19 05:56:31 +00:00
e3772bd1f6 Merge version_29_1781848398787 into main
Merge version_29_1781848398787 into main
2026-06-19 05:54:40 +00:00
kudinDmitriyUp
461f919a09 Bob AI: Add faded background image to hero section 2026-06-19 05:54:00 +00:00
2f1a0ebb1e Merge version_28_1781848211144 into main
Merge version_28_1781848211144 into main
2026-06-19 05:50:25 +00:00
b8120b2f94 Merge version_27_1781844224352 into main
Merge version_27_1781844224352 into main
2026-06-19 04:47:29 +00:00
8 changed files with 185 additions and 40 deletions

View File

@@ -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>

View File

@@ -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>
);

View File

@@ -34,7 +34,9 @@ export default function Layout() {
{
"name": "Faq",
"href": "#faq"
}
},
{ name: "Products", href: "/products" },
];
return (

View File

@@ -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="https://storage.googleapis.com/webild/users/user_3EPHwihhKJDTe9RMELwW31lY9YY/uploaded-1781848199023-1n57m2t3.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>
);
}

View File

@@ -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>
);
}

View File

@@ -67,6 +67,11 @@ const HeroInline = () => {
transition={{ duration: 0.5 }}
>
<HeroBackgroundSlot />
{/* 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%)]" />

View 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>
</>
);
}

View File

@@ -6,4 +6,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
];