mirror of
https://github.com/wavetermdev/waveterm
synced 2026-04-21 14:37:16 +00:00
10 lines
342 B
TypeScript
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]" />
|
|
);
|
|
}
|