ui fixes
This commit is contained in:
parent
08ad04083e
commit
e166bb7d19
@ -677,14 +677,15 @@
|
||||
{/if}
|
||||
{/if}Analysts estimate {abbreviateNumber(
|
||||
item?.revenueEst,
|
||||
true,
|
||||
)} in revenue ({(
|
||||
(item?.revenueEst / item?.revenuePrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings per share
|
||||
({((item?.epsEst / item?.epsPrior - 1) * 100)?.toFixed(
|
||||
2,
|
||||
)}% YoY).
|
||||
)?.toFixed(2)}% YoY) and {item?.epsEst} in earnings per share
|
||||
{#if item?.epsPrior !== 0}
|
||||
({((item?.epsEst / item?.epsPrior - 1) * 100)?.toFixed(
|
||||
2,
|
||||
)}% YoY).
|
||||
{/if}
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
@ -736,12 +737,10 @@
|
||||
<li
|
||||
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
|
||||
by {abbreviateNumber(
|
||||
Math.abs(item?.revenueSurprise),
|
||||
true,
|
||||
)}, with {(
|
||||
by {abbreviateNumber(Math.abs(item?.revenueSurprise))},
|
||||
with {(
|
||||
(item?.revenue / item?.revenuePrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY {item?.revenue / item?.revenuePrior -
|
||||
@ -753,9 +752,9 @@
|
||||
<li
|
||||
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?.toFixed(2)}, with {(
|
||||
{item?.epsSurprise?.toFixed(2)}, with {(
|
||||
((item?.eps - item?.epsPrior) /
|
||||
Math.abs(item?.epsPrior)) *
|
||||
100
|
||||
|
||||
@ -717,15 +717,16 @@
|
||||
{/if}
|
||||
Analysts estimate {abbreviateNumber(
|
||||
item?.revenueEst,
|
||||
true,
|
||||
)} in revenue ({(
|
||||
(item?.revenueEst / item?.revenuePrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings
|
||||
per share ({(
|
||||
(item?.epsEst / item?.epsPrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY).
|
||||
)?.toFixed(2)}% YoY) and {item?.epsEst} in earnings
|
||||
per share {#if item?.epsPrior !== 0}
|
||||
({(
|
||||
(item?.epsEst / item?.epsPrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY).
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div
|
||||
|
||||
@ -1460,40 +1460,7 @@
|
||||
</details>
|
||||
</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>
|
||||
<details class="collapse collapse-arrow">
|
||||
<summary
|
||||
|
||||
@ -1603,16 +1603,17 @@
|
||||
{/if}
|
||||
Analysts estimate {abbreviateNumber(
|
||||
item?.revenueEst,
|
||||
true,
|
||||
)} in revenue ({(
|
||||
(item?.revenueEst / item?.revenuePrior -
|
||||
1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY) and ${item?.epsEst} in earnings
|
||||
per share ({(
|
||||
(item?.epsEst / item?.epsPrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY).
|
||||
)?.toFixed(2)}% YoY) and {item?.epsEst} in earnings
|
||||
per share {#if item?.epsPrior !== 0}
|
||||
({(
|
||||
(item?.epsEst / item?.epsPrior - 1) *
|
||||
100
|
||||
)?.toFixed(2)}% YoY).
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user