Skip to content

Commit

Permalink
fix topRow board
Browse files Browse the repository at this point in the history
  • Loading branch information
dvalleri committed Sep 27, 2024
1 parent 2228847 commit 8de7401
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions ui/src/container/launchpad/top-row/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ function QuickStartBoard() {

return (
<Board
footer={(
<Link onClick={handleOnclick}>
<div className="text-xl">
{'Get Started >>'}
</div>
</Link>
)}
header={(
<NewHeader
details={{ one: (<span aria-label="tada" role="img">🎉</span>) }}
Expand All @@ -40,18 +47,10 @@ function QuickStartBoard() {
main={(
<div className="flex flex-col items-start gap-4 leading-snug">
<div className="flex flex-col items-start">
<p className="font-bold text-">Get Up and Running in Minutes</p>
<strong>Get Up and Running in Minutes</strong>

<p>A step-by-step guide to quickly setting up and using our AI monitoring platform</p>

</div>

<Link onClick={handleOnclick}>
<div className="text-xl">
{'Get Started >>'}
</div>
</Link>

</div>
)}
onClick={handleOnclick}
Expand All @@ -66,6 +65,13 @@ function DocumentationHubBoard() {

return (
<Board
footer={(
<Link onClick={handleOnclick}>
<div className="text-xl">
{'Get Started >>'}
</div>
</Link>
)}
header={(
<NewHeader
details={{ one: (<span aria-label="man" role="img">👨</span>) }}
Expand All @@ -81,18 +87,12 @@ function DocumentationHubBoard() {
main={(
<div className="flex flex-col items-start gap-4 leading-snug">
<div className="flex flex-col items-start">
<p className="font-bold text-">Your Complete Resource</p>
<strong>Your Complete Resource</strong>

<p>From setup to advanced configurations, find everything you need to navigate our platform</p>

</div>

<Link onClick={handleOnclick}>
<div className="text-xl">
{'Get Started >>'}
</div>
</Link>

</div>
)}
onClick={handleOnclick}
Expand All @@ -102,7 +102,6 @@ function DocumentationHubBoard() {

function YoutubeVideoBoard() {
return (

<iframe
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowFullScreen
Expand Down Expand Up @@ -133,7 +132,14 @@ function TrialBoard() {
<SectionTitle
size="large"
style={{ color: 'var(--coo-highlight)' }}
title="Start your free trial today!"
title={(
<div>
Start your free trial
<br />
today!
</div>

)}
titleWeight="bold"
wrapTitle
/>
Expand Down

0 comments on commit 8de7401

Please sign in to comment.