Compare commits

...

6 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
5 changed files with 18 additions and 1 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

@@ -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' },
];