This commit is contained in:
MuslemRahimi 2024-06-16 17:11:40 +02:00
parent 3ddded4e36
commit f80709393f
4 changed files with 8 additions and 23 deletions

View File

@ -44,12 +44,6 @@
</span> </span>
</a> </a>
<span class="hidden sm:flex flex-row items-center mt-4 text-xs text-white">
Made with
<svg class="ml-1 mr-1 w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="#b71c1c" d="m12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"/></svg>
in Siegen
</span>
</div> </div>
<div class="flex-1 mb-2 sm:mb-0"> <div class="flex-1 mb-2 sm:mb-0">
@ -137,14 +131,6 @@
--> -->
<span class="sm:hidden flex flex-row items-center text-xs text-white">
Made with
<svg class="ml-1 mr-1 w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="#b71c1c" d="m12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z"/></svg>
in Siegen
<span class="ml-auto">© 2024 Stocknear. All Rights Reserved.</span>
</span>
</div> </div>
<div class="hidden sm:flex flex-col"> <div class="hidden sm:flex flex-col">

View File

@ -132,8 +132,7 @@
Monday through Friday. Monday through Friday.
<br> <br>
<br> <br>
Even the stock market needs a break sometimes! The market is closed on the following holidays:
Here are the special holidays when the stock market decides to take a day off.
</p> </p>
<table class="table table-sm table-compact bg-[#202020] w-full mt-5 mb-10 text-white"> <table class="table table-sm table-compact bg-[#202020] w-full mt-5 mb-10 text-white">
@ -141,7 +140,7 @@
<thead> <thead>
<tr class="border-b border-slate-700"> <tr class="border-b border-slate-700">
<th class="bg-[#202020] text-white text-sm font-semibold"> <th class="bg-[#202020] text-white text-sm font-semibold">
Special Holiday Exchange holidays
</th> </th>
<th class="bg-[#202020] text-white text-sm font-semibold"> <th class="bg-[#202020] text-white text-sm font-semibold">
Date Date

View File

@ -94,7 +94,7 @@ $: {
<div class="flex flex-row pt-1 pb-2"> <div class="flex flex-row pt-1 pb-2">
{#if earningDate} {#if earningDate}
<div class="badge badge-error gap-2 mt-2 font-medium text-sm text-white"> <div class="badge badge-error gap-2 mt-2 font-medium text-sm text-white">
Earning Call - {earningDate} Earnings Call - {earningDate}
</div> </div>
{/if} {/if}
</div> </div>

View File

@ -92,7 +92,7 @@ function loadMoreData() {
allowfullscreen allowfullscreen
></iframe> ></iframe>
{:else} {:else}
<a href={item?.url} target="_blank"> <a href={item?.url} rel="noopener noreferrer" target="_blank">
<div class="flex-shrink-0 m-auto "> <div class="flex-shrink-0 m-auto ">
<img src={item?.image} class=" w-full rounded-lg" alt="news image" loading="lazy"> <img src={item?.image} class=" w-full rounded-lg" alt="news image" loading="lazy">
</div> </div>
@ -103,12 +103,12 @@ function loadMoreData() {
{item?.site} · {formatDate(item?.publishedDate)} ago {item?.site} · {formatDate(item?.publishedDate)} ago
</h3> </h3>
<a href={item?.url} target="_blank" class="text-lg font-bold text-white"> <a href={item?.url} rel="noopener noreferrer" target="_blank" class="text-lg font-bold text-white">
{item?.title} {item?.title}
<p class="text-white text-sm mt-2 font-normal">
{item?.text}
</p>
</a> </a>
<p class="text-white text-sm mt-2">
{item?.text}
</p>
</div> </div>
</div> </div>