19 lines
886 B
TypeScript
19 lines
886 B
TypeScript
// Created by add_section_from_catalog (HeroBrand).
|
|
|
|
import React from 'react';
|
|
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
|
|
|
export default function HeroSection(): React.JSX.Element {
|
|
return (
|
|
<div data-webild-section="hero" id="hero">
|
|
<HeroBrand
|
|
imageSrc="http://img.b2bpic.net/free-photo/empty-high-end-workspace-with-advanced-tech-tools-enhancing-productivity_482257-119752.jpg"
|
|
primaryButton={{"text":"View Demo","href":"#architecture"}}
|
|
description="The context layer for high-stakes clinical trials. Stop losing context between Clinical Evidence, Trial Design, and Regulatory teams. Orchestrate multi-agent workflows that keep evidence attached to decisions."
|
|
brand="Band"
|
|
secondaryButton={{"href":"https://lablab.ai/ai-hackathons/band-of-agents-hackathon","text":"Join Hackathon"}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|