Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions docs/app/(home)/sections/HeroSection/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const heroStyles = styles;
// CTAs
const primaryCTA = "npx @openuidev/cli@latest create";
const secondaryCTA = "Try Playground";
const architectureHref = "/docs/openui-lang/how-it-works";
const openclawOsHref = "/openclaw-os";
const DESKTOP_HERO_IMAGE = {
light: "/homepage/hero-web.png",
dark: "/homepage/hero-web-dark.png",
Expand Down Expand Up @@ -146,28 +146,24 @@ function AnnouncementBanner({ className = "" }: { className?: string }) {
<div className={`${styles.heroBanner} ${styles.heroBannerDesktop} ${className}`.trim()}>
<span className={styles.heroBannerLabel}>
<span className={styles.heroBannerBadge}>New</span>
<span>We&apos;re introducing OpenUI Lang v0.5</span>
<span>The default workspace for OpenClaw. Meet OpenClaw-OS.</span>
</span>
<div className={styles.heroBannerActions}>
<Link
href="/demo/github"
target="_blank"
href={openclawOsHref}
className={`${styles.heroBannerButton} ${styles.heroBannerButtonPrimary}`}
>
<span>Try</span>
</Link>
<Link href={architectureHref} className={styles.heroBannerButton}>
<span>Read more</span>
<span>Meet OpenClaw-OS</span>
</Link>
</div>
</div>
<Link
href={architectureHref}
href={openclawOsHref}
className={`${styles.heroBanner} ${styles.heroBannerMobile} ${className}`.trim()}
>
<span className={styles.heroBannerLabel}>
<span className={styles.heroBannerBadge}>New</span>
<span>Introducing OpenUI Lang v0.5</span>
<span>The default workspace for OpenClaw. Meet OpenClaw-OS.</span>
</span>
</Link>
</>
Expand Down
Loading