-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change color scheme for demo chat app
- Loading branch information
Corneliu Croitoru
committed
Oct 24, 2024
1 parent
c516ade
commit 0a290f1
Showing
2 changed files
with
109 additions
and
87 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 |
---|---|---|
@@ -1,19 +1,16 @@ | ||
--- | ||
import ChatWindow from '../components/ChatWindow'; | ||
--- | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="generator" content={Astro.generator} /> | ||
<title>Multi-Agent Orchestrator Demo</title> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="generator" content={Astro.generator} /> | ||
<title>Multi-Agent Orchestrator Demo</title> | ||
</head> | ||
<body class="bg-gradient-to-br from-amber-500 via-orange-500 to-red-500 min-h-screen flex items-center justify-center p-4"> | ||
<div class="w-[70%] h-[90vh]"> | ||
<ChatWindow client:load /> | ||
</div> | ||
</body> | ||
|
||
<body class="bg-gradient-to-br from-slate-200 via-slate-100 to-white"> | ||
<!-- Removed the wrapping div --> | ||
<ChatWindow client:load /> | ||
</body> | ||
</html> |