Compare commits
13 Commits
version_31
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 60ed0a043a | |||
| 2af0109232 | |||
| de48ddff81 | |||
|
|
fb55c93fdc | ||
|
|
204b484f0b | ||
|
|
f8af90f221 | ||
| 2e335f0e97 | |||
|
|
8807109d53 | ||
| 83e97029de | |||
| 751599c092 | |||
| 79b86b58e2 | |||
| 7c397f9e36 | |||
| da08a53295 |
@@ -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>
|
||||
);
|
||||
|
||||
@@ -34,7 +34,9 @@ export default function Layout() {
|
||||
{
|
||||
"name": "Faq",
|
||||
"href": "#faq"
|
||||
}
|
||||
},
|
||||
{ name: "Products", href: "/products" },
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
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