waveterm/frontend/app/onboarding/onboarding-common.tsx

10 lines
342 B
TypeScript

// Copyright 2026, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
export const CurrentOnboardingVersion = "v0.14.5";
export function OnboardingGradientBg() {
return (
<div className="absolute inset-0 bg-gradient-to-br from-accent/[0.25] via-transparent to-accent/[0.05] pointer-events-none rounded-[10px]" />
);
}