-
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.
closes #83 Note: going with a lighter weight solution => https://unfinished-team.slack.com/archives/C05FC0YUP51/p1705440655948859 <img width="798" alt="Screenshot 2024-01-17 at 9 29 59 AM" src="https://github.com/LibertyDSNP/provider-dashboard/assets/43625033/b0cef912-ab7c-401e-b054-b362fa046aff"> --------- Co-authored-by: Claire Olmstead <[email protected]>
- Loading branch information
1 parent
e6e6075
commit 8532c1f
Showing
6 changed files
with
55 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts"> | ||
</script> | ||
|
||
<!-- TODO: Connect activities --> | ||
<div class="border-l border-divider pl-5 min-w-[300px]"> | ||
<div class="label border-divider border-b pb-5">Activity Log</div> | ||
<div class="border-divider border-b py-2 text-sm">Activity_Log_Preview</div> | ||
</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
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,9 @@ | ||
<script lang="ts"> | ||
import Profile from '$components/Profile.svelte'; | ||
import ActivityLogPreview from '$components/ActivityLogPreview.svelte'; | ||
</script> | ||
|
||
<div class="content-block flex justify-between mb-5"> | ||
<Profile /> | ||
<ActivityLogPreview /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<script lang="ts"> | ||
import { storeMsaInfo } from '$lib/stores'; | ||
</script> | ||
|
||
<div class="flex items-center gap-4"> | ||
<div | ||
class="text-2xl text-bold h-[90px] w-[90px] max-w-[90px] rounded-full bg-gradient-to-r to-green from-blue flex items-center justify-center" | ||
> | ||
{$storeMsaInfo ? $storeMsaInfo?.providerName.substring(0, 1) : ''} | ||
</div> | ||
<div class="flex flex-col gap-1"> | ||
<div class="data-value-lg">{$storeMsaInfo?.providerName}</div> | ||
<div class="text-sm">{$storeMsaInfo?.msaId}</div> | ||
</div> | ||
</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
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