-
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.
- Loading branch information
1 parent
6bf9c65
commit 0dc8b1f
Showing
11 changed files
with
60 additions
and
9 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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,12 +1,17 @@ | ||
<script> | ||
<script lang="ts"> | ||
import '../app.css'; | ||
import studiobg from '$lib/assets/studiobg.webp'; | ||
import ChatBox from '$lib/ChatBox/ChatBox.svelte'; | ||
import lettermark from '$lib/assets/lettermark.svg'; | ||
</script> | ||
|
||
<div | ||
class="relative h-full overflow-hidden rounded-none bg-slate-300 bg-[url('lib/assets/studiobg.webp')] bg-cover bg-center bg-no-repeat shadow-inner sm:rounded-[2rem]" | ||
> | ||
<div class="grid grid-cols-5 gap-4 px-2 sm:grid-cols-9 sm:px-16"> | ||
<div class="col-span-3"> | ||
<img src={lettermark} alt="Hunters lettermark logo" class="mt-16" /> | ||
<div class="inline-flex w-full justify-between gap-4"> | ||
<h3>How?</h3> | ||
<button class="h-12 rounded bg-blue-600 px-3 text-stone-50">Ask HuntBot</button> | ||
</div> | ||
<!-- <ChatBox /> --> | ||
</div> | ||
<slot /> | ||
<ChatBox /> | ||
</div> |
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