This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Add deprecation banner for GPT and DALL-E (#112)
- Loading branch information
1 parent
3969305
commit 38a9b32
Showing
9 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ | |
import BaseBanner from './BaseBanner.svelte'; | ||
</script> | ||
|
||
<BaseBanner | ||
title="Beta Feature" | ||
message="This feature is currently in beta. If you encounter any issues, please contact [email protected]." | ||
variant="warning" | ||
/> | ||
<BaseBanner title="Beta Feature" variant="warning"> | ||
This feature is currently in beta. If you encounter any issues, please contact | ||
[email protected]. | ||
</BaseBanner> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<script lang="ts"> | ||
import BaseBanner from './BaseBanner.svelte'; | ||
</script> | ||
|
||
<BaseBanner title="Beta Feature" variant="error"> | ||
This feature has been deprecated and will no longer be maintained. Please use | ||
<a | ||
href="https://docbot.childmind.org" | ||
class="underline text-blue-600 hover:text-blue-800 visited:text-purple-600">DocBot</a | ||
> instead. | ||
</BaseBanner> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters