optimize meta

This commit is contained in:
MuslemRahimi 2025-01-17 21:27:19 +01:00
parent fef62e56d1
commit cd1bc508cb
2 changed files with 12 additions and 7 deletions

View File

@ -406,7 +406,9 @@ ${paragraphs.join("\n")}
{:else}
No SEC filings available.
{/if}
<div class="border-b border-gray-600 py-3 text-xl font-semibold">
<div
class="border-b border-gray-600 py-3 text-lg sm:text-xl font-semibold"
>
<a
class="text-blue-400 sm:hover:text-white sm:hover:underline sm:hover:underline-offset-4"
href={`https://www.sec.gov/cgi-bin/browse-edgar?CIK=${rawData?.cik}&amp;count=100`}

View File

@ -413,21 +413,24 @@
<meta name="viewport" content="width=device-width" />
<title>
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
{$displayCompanyName} ({$stockTicker}) Number of Employees · Stocknear
{$displayCompanyName} ({$stockTicker}) Number of Employees {historyList
?.at(-1)
?.filingDate?.slice(0, 4)} - {historyList?.at(0)?.filingDate?.slice(0, 4)}
· Stocknear
</title>
<meta
name="description"
content={`Detailed historical employees number for ${$displayCompanyName} (${$stockTicker}). See many years of change, growth and the impact.`}
content={`Current and historical number of employees for ${$displayCompanyName} (${$stockTicker}) with related statistics, a chart and a data table.`}
/>
<!-- Other meta tags -->
<meta
property="og:title"
content={`${$displayCompanyName} (${$stockTicker}) Number of Employees · Stocknear`}
content={`${$displayCompanyName} (${$stockTicker}) Number of Employees ${historyList?.at(-1)?.filingDate?.slice(0, 4)} - ${historyList?.at(0)?.filingDate?.slice(0, 4)} · Stocknear`}
/>
<meta
property="og:description"
content={`Detailed historical employees number for ${$displayCompanyName} (${$stockTicker}). See many years of change, growth and the impact.`}
content={`Current and historical number of employees for ${$displayCompanyName} (${$stockTicker}) with related statistics, a chart and a data table.`}
/>
<meta property="og:type" content="website" />
<!-- Add more Open Graph meta tags as needed -->
@ -436,11 +439,11 @@
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content={`${$displayCompanyName} (${$stockTicker}) Number of Employees · Stocknear`}
content={`${$displayCompanyName} (${$stockTicker}) Number of Employees ${historyList?.at(-1)?.filingDate?.slice(0, 4)} - ${historyList?.at(0)?.filingDate?.slice(0, 4)} · Stocknear`}
/>
<meta
name="twitter:description"
content={`Detailed historical employees number for ${$displayCompanyName} (${$stockTicker}). See many years of change, growth and the impact.`}
content={`Current and historical number of employees for ${$displayCompanyName} (${$stockTicker}) with related statistics, a chart and a data table.`}
/>
<!-- Add more Twitter meta tags as needed -->
</svelte:head>