This commit is contained in:
MuslemRahimi 2025-03-23 17:36:43 +01:00
parent b7d653257e
commit ab551ee2cf
5 changed files with 17 additions and 23 deletions

View File

@ -209,7 +209,7 @@
</svg>
{:else}
<svg
class="w-3.5 h-3.5 text-gray-400 dark:text-gray-500"
class="w-3.5 h-3.5 text-gray-500"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
@ -428,7 +428,7 @@
<h2 class="text-start text-xl font-semibold ml-3">
Top Stocks Picks
</h2>
<ArrowLogo class="w-8 h-8 mr-3 shrink-0 text-gray-400 dark:" />
<ArrowLogo class="w-8 h-8 mr-3 shrink-0 " />
</div>
<span class="p-3 ml-3 mr-3">
Get the latest top Wall Street analyst ratings.
@ -447,7 +447,7 @@
<h2 class="text-start text-xl font-semibold ml-3">
Top Shorted Stocks
</h2>
<ArrowLogo class="w-8 h-8 mr-3 shrink-0 text-gray-400 dark:" />
<ArrowLogo class="w-8 h-8 mr-3 shrink-0 " />
</div>
<span class="p-3 ml-3 mr-3">
Never miss out another short squeeze

View File

@ -72,7 +72,7 @@
<h3 class="mt-2 text-2xl font-bold tracking-tight bp:text-3xl">
Analyst Star Rankings
</h3>
<p class="mt-3 leading-8 text-muted dark:text-faded xl:text-lg">
<p class="mt-3 leading-8 xl:text-lg">
Our analyst star rankings are based on these four factors
</p>
</div>
@ -101,7 +101,7 @@
</div>
Success Rate
</dt>
<dd class="mt-2 leading-7 text-muted dark:text-faded">
<dd class="mt-2 leading-7">
The percentage of ratings that are profitable.
</dd>
</div>
@ -126,7 +126,7 @@
</div>
Average Return
</dt>
<dd class="mt-2 leading-7 text-muted dark:text-faded">
<dd class="mt-2 leading-7">
The average percentage return within one year of the
rating.
</dd>
@ -152,7 +152,7 @@
</div>
Rating Count
</dt>
<dd class="mt-2 leading-7 text-muted dark:text-faded">
<dd class="mt-2 leading-7">
The more ratings the analyst has provided, the higher the
score.
</dd>
@ -178,7 +178,7 @@
</div>
Recency
</dt>
<dd class="mt-2 leading-7 text-muted dark:text-faded">
<dd class="mt-2 leading-7">
Ratings provided within the past year contribute to a
higher score.
</dd>

View File

@ -206,7 +206,7 @@
<tbody>
{#each stockList as item, index}
<tr
class="dark:sm:hover:bg-[#245073]/10 odd:bg-[#F6F7F8] dark:odd:bg-odd{index +
class="dark:sm:hover:bg-[#245073]/10 odd:bg-[#F6F7F8] dark:odd:bg-odd {index +
1 ===
stockList?.length &&
!['Pro', 'Plus']?.includes(data?.user?.tier)

View File

@ -77,7 +77,7 @@
<SEO
title="Pricing Plans"
descriptiion="Get unlimited access to all of our data and tools, including full financial history, full ETF holdings, and more."
description="Get unlimited access to all of our data and tools, including full financial history, full ETF holdings, and more."
/>
<svelte:head>
@ -1041,18 +1041,16 @@
>
</div>
</div>
<!--
<div
class="relative min-h-[330px] lg:min-h-[240px] text-left w-full col-span-1 lg:col-span-3 bg-zinc-300 dark:bg-zinc-900 bg-opacity-80 backdrop-filter backdrop-blur-lg rounded-xl overflow-visible border border-zinc-200 dark:border-zinc-600 p-6 isolate translate-y-5 opacity-100"
>
<!-- Responsive header: stacks vertically on mobile, horizontal on md+ -->
<div class="flex flex-row items-center justify-between">
<h3 class="text-2xl md:text-3xl font-bold">Lifetime</h3>
<div>
<span class="text-3xl md:text-4xl font-bold">$599</span>
</div>
</div>
<!-- Responsive paragraph text -->
<p class=" md:text-lg mt-4 lg:mt-2">
Everything in Pro, pay once, never again!
</p>
@ -1152,6 +1150,7 @@
</button>
</div>
</div>
-->
</div>
<!--Feature Table-->

View File

@ -14,7 +14,7 @@
export let data;
let timePeriod = "oneDay";
let timePeriod = "oneWeek";
const today = new Date();
const options = { month: "short", day: "numeric", year: "numeric" };
@ -77,9 +77,6 @@
let activeIdx = 0;
const tabs = [
{
title: "Today",
},
{
title: "Week",
},
@ -94,12 +91,10 @@
function changeTimePeriod(state) {
activeIdx = state;
if (activeIdx === 0) {
timePeriod = "oneDay";
} else if (activeIdx === 1) {
timePeriod = "oneWeek";
} else if (activeIdx === 2) {
} else if (activeIdx === 1) {
timePeriod = "oneMonth";
} else if (activeIdx === 3) {
} else if (activeIdx === 2) {
timePeriod = "threeMonths";
}
}
@ -142,7 +137,7 @@
class="text-start text-xl w-full flex flex-row items-center mb-3"
>
<span class="font-semibold">Trending Posts</span>
<span class="text-sm sm:text-[1rem] ml-auto font-normal"
<span class="text-sm ml-auto font-normal italic"
>Updated {formattedDate}</span
>
</div>
@ -255,7 +250,7 @@
>
<span class="font-semibold">Trending Companies</span>
<span
class="text-sm sm:text-[1rem] mt-2 sm:mt-0 sm:ml-auto font-normal"
class="text-sm mt-2 sm:mt-0 sm:ml-auto font-normal italic"
>Updated {formattedDate}</span
>
</div>