This commit is contained in:
MuslemRahimi 2025-02-28 12:21:09 +01:00
parent 02ed2756e3
commit c0064a958b
3 changed files with 53 additions and 74 deletions

View File

@ -7,8 +7,7 @@
<svelte:head> <svelte:head>
<!-- Structured Data for FAQ --> <!-- Structured Data for FAQ -->
<script type="application/ld+json"> <script type="application/ld+json">
{` {JSON.stringify({
{
"@context": "https://schema.org", "@context": "https://schema.org",
"@type": "FAQPage", "@type": "FAQPage",
"mainEntity": [ "mainEntity": [
@ -61,9 +60,9 @@
} }
} }
] ]
} })}
`}
</script> </script>
<!-- Canonical URL --> <!-- Canonical URL -->
<link rel="canonical" href="https://stocknear.com/affiliate-program" /> <link rel="canonical" href="https://stocknear.com/affiliate-program" />
</svelte:head> </svelte:head>

View File

@ -292,21 +292,3 @@
</div> </div>
</div> </div>
</section> </section>
<style>
.app {
height: 400px;
width: 100%;
}
@media (max-width: 560px) {
.app {
width: 100%;
height: 300px;
}
}
.chart {
width: 100%;
}
</style>

View File

@ -101,8 +101,6 @@
recommendationList = recommendationList =
rawAnalystList?.length > 5 ? rawAnalystList?.slice(-6) : rawAnalystList; rawAnalystList?.length > 5 ? rawAnalystList?.slice(-6) : rawAnalystList;
categories = ["Strong Buy", "Buy", "Hold", "Sell", "Strong Sell"]; categories = ["Strong Buy", "Buy", "Hold", "Sell", "Strong Sell"];
console.log(recommendationList);
} }
optionsData = getPlotOptions() || null; optionsData = getPlotOptions() || null;