This commit is contained in:
MuslemRahimi 2024-12-10 10:44:01 +01:00
parent 08ad04083e
commit e166bb7d19
4 changed files with 26 additions and 58 deletions

View File

@ -677,14 +677,15 @@
{/if} {/if}
{/if}Analysts estimate {abbreviateNumber( {/if}Analysts estimate {abbreviateNumber(
item?.revenueEst, item?.revenueEst,
true,
)} in revenue ({( )} in revenue ({(
(item?.revenueEst / item?.revenuePrior - 1) * (item?.revenueEst / item?.revenuePrior - 1) *
100 100
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings per share )?.toFixed(2)}% YoY) and {item?.epsEst} in earnings per share
({((item?.epsEst / item?.epsPrior - 1) * 100)?.toFixed( {#if item?.epsPrior !== 0}
2, ({((item?.epsEst / item?.epsPrior - 1) * 100)?.toFixed(
)}% YoY). 2,
)}% YoY).
{/if}
</li> </li>
{/each} {/each}
</ul> </ul>
@ -736,12 +737,10 @@
<li <li
style="color: #fff; line-height: 22px; margin-top:10px; margin-left: 30px; margin-bottom: 10px; list-style-type: disc;" style="color: #fff; line-height: 22px; margin-top:10px; margin-left: 30px; margin-bottom: 10px; list-style-type: disc;"
> >
Revenue of {abbreviateNumber(item?.revenue, true)} Revenue of {abbreviateNumber(item?.revenue)}
{item?.revenueSurprise > 0 ? "exceeds" : "misses"} estimates {item?.revenueSurprise > 0 ? "exceeds" : "misses"} estimates
by {abbreviateNumber( by {abbreviateNumber(Math.abs(item?.revenueSurprise))},
Math.abs(item?.revenueSurprise), with {(
true,
)}, with {(
(item?.revenue / item?.revenuePrior - 1) * (item?.revenue / item?.revenuePrior - 1) *
100 100
)?.toFixed(2)}% YoY {item?.revenue / item?.revenuePrior - )?.toFixed(2)}% YoY {item?.revenue / item?.revenuePrior -
@ -753,9 +752,9 @@
<li <li
style="color: #fff; line-height: 22px; margin-top:0px; margin-left: 30px; margin-bottom: 30px; list-style-type: disc;" style="color: #fff; line-height: 22px; margin-top:0px; margin-left: 30px; margin-bottom: 30px; list-style-type: disc;"
> >
EPS of ${item?.eps} EPS of {item?.eps}
{item?.epsSurprise > 0 ? "exceeds" : "misses"} estimates by {item?.epsSurprise > 0 ? "exceeds" : "misses"} estimates by
${item?.epsSurprise?.toFixed(2)}, with {( {item?.epsSurprise?.toFixed(2)}, with {(
((item?.eps - item?.epsPrior) / ((item?.eps - item?.epsPrior) /
Math.abs(item?.epsPrior)) * Math.abs(item?.epsPrior)) *
100 100

View File

@ -717,15 +717,16 @@
{/if} {/if}
Analysts estimate {abbreviateNumber( Analysts estimate {abbreviateNumber(
item?.revenueEst, item?.revenueEst,
true,
)} in revenue ({( )} in revenue ({(
(item?.revenueEst / item?.revenuePrior - 1) * (item?.revenueEst / item?.revenuePrior - 1) *
100 100
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings )?.toFixed(2)}% YoY) and {item?.epsEst} in earnings
per share ({( per share {#if item?.epsPrior !== 0}
(item?.epsEst / item?.epsPrior - 1) * ({(
100 (item?.epsEst / item?.epsPrior - 1) *
)?.toFixed(2)}% YoY). 100
)?.toFixed(2)}% YoY).
{/if}
</div> </div>
<div <div

View File

@ -1460,40 +1460,7 @@
</details> </details>
</li> </li>
--> -->
<!--
<li>
<details class="collapse collapse-arrow">
<summary
class="collapse-title text-white font-semibold text-[1rem] sm:text-xl flex items-center justify-between w-full text-left py-5"
>
Do you offer a Lifetime Deal?
</summary>
<div class="collapse-content">
<p
class="text-sm sm:text-[1rem] pb-5 text-gray-200 overflow-hidden transition-all duration-300 ease-in-out"
>
Yes, we do offer a special limited life time deal for <strong
>$399</strong
>.
<br />
<br />
You might be wondering why this price is higher than our standard
subscription. The reason is that while I can't guarantee our
current pricing will remain the same, purchasing lifetime access
locks in your deal—you pay once and never again.
<br />
<br />
This offer includes all features from the Pro Tier. If you're
interested, feel free to email me at
<a
href={`mailto:${emailAddress}`}
class="text-blue-400 underline">{emailAddress}</a
>.
</p>
</div>
</details>
</li>
-->
<li> <li>
<details class="collapse collapse-arrow"> <details class="collapse collapse-arrow">
<summary <summary

View File

@ -1603,16 +1603,17 @@
{/if} {/if}
Analysts estimate {abbreviateNumber( Analysts estimate {abbreviateNumber(
item?.revenueEst, item?.revenueEst,
true,
)} in revenue ({( )} in revenue ({(
(item?.revenueEst / item?.revenuePrior - (item?.revenueEst / item?.revenuePrior -
1) * 1) *
100 100
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings )?.toFixed(2)}% YoY) and {item?.epsEst} in earnings
per share ({( per share {#if item?.epsPrior !== 0}
(item?.epsEst / item?.epsPrior - 1) * ({(
100 (item?.epsEst / item?.epsPrior - 1) *
)?.toFixed(2)}% YoY). 100
)?.toFixed(2)}% YoY).
{/if}
</div> </div>
<div <div