diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 381c62e1..c593b8e5 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -5,6 +5,9 @@ import { abbreviateNumber, formatDate } from '$lib/utils'; import StockSlider from '$lib/components/StockSlider.svelte'; import InfoModal from '$lib/components/InfoModal.svelte'; + import nancyPelosiProfile from '$lib/images/senator/Nancy_Pelosi.png'; + import warrenBuffetProfile from '$lib/images/hedge_funds/0001067983.png'; + import michaelBurryProfile from '$lib/images/hedge_funds/0001649339.png'; import { screenWidth, numberOfUnreadNotification} from '$lib/store'; @@ -234,6 +237,42 @@ onMount( async() => { {/if} +
+ +
+
+ +
+
+ Track Nancy Pelosi + Dem · House +
+
+
+ +
+
+ +
+
+ Track Warren Buffet + Berkshire Hathaway +
+
+
+ +
+
+ +
+
+ Track Michael Burry + Scion Asset Management +
+
+
+
+ @@ -254,7 +293,8 @@ onMount( async() => {
- Follow the Community + + Follow the Community @@ -791,4 +831,26 @@ onMount( async() => { -webkit-text-stroke: 1px #CBD5E1; /* Add a black stroke outline with a thickness of 2px */ } + +.democratic-striped { + background-image: repeating-linear-gradient( + -45deg, + #295AC7, + #295AC7 10px, + #164D9D 10px, + #164D9D 20px + ); +} + +.hedge-fund-striped { + background-image: repeating-linear-gradient( + -45deg, + #A77120, + #A77120 10px, + #90621C 10px, + #90621C 20px + ); +} + + \ No newline at end of file diff --git a/src/routes/options-flow/+page.svelte b/src/routes/options-flow/+page.svelte index a240c259..68f5a763 100644 --- a/src/routes/options-flow/+page.svelte +++ b/src/routes/options-flow/+page.svelte @@ -667,7 +667,7 @@ const debouncedHandleInput = debounce(handleInput, 200);