seo optimization
This commit is contained in:
parent
681be4b72b
commit
e36b1979a8
@ -235,37 +235,6 @@
|
||||
const combinedNavigation = navigation?.concat(updatedNavigation);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>
|
||||
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Stock
|
||||
Lists · Stocknear</title
|
||||
>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
|
||||
<meta
|
||||
name="description"
|
||||
content="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others."
|
||||
/>
|
||||
<!-- Other meta tags -->
|
||||
<meta property="og:title" content="Stock Lists · Stocknear" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others."
|
||||
/>
|
||||
<meta property="og:type" content="website" />
|
||||
<!-- Add more Open Graph meta tags as needed -->
|
||||
|
||||
<!-- Twitter specific meta tags -->
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="Stock Lists · Stocknear" />
|
||||
<meta
|
||||
name="twitter:description"
|
||||
content="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others."
|
||||
/>
|
||||
<!-- Add more Twitter meta tags as needed -->
|
||||
</svelte:head>
|
||||
|
||||
<section
|
||||
class="w-full max-w-3xl sm:max-w-[1400px] overflow-hidden min-h-screen pt-5 px-4 lg:px-3 mb-20"
|
||||
>
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
<script lang="ts">
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="Stock Lists "
|
||||
description="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others."
|
||||
/>
|
||||
|
||||
<!--Start Market Cap Group-->
|
||||
|
||||
<div class="text-white">
|
||||
|
||||
@ -2,6 +2,8 @@
|
||||
import { abbreviateNumber } from "$lib/utils";
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
let rawData = data?.getFAANG;
|
||||
|
||||
@ -11,6 +13,11 @@
|
||||
rawData?.reduce((total, stock) => total + stock?.revenue, 0) ?? 0;
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="A List of The Five FAANG Companies"
|
||||
description="The FAANG stocks are a list of five U.S. technology companies: Facebook (now Meta), Amazon, Apple, Netflix and Alphabet (Google)."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="The FAANG stocks refer to five major U.S. tech companies: Meta (formerly
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@ -26,6 +27,11 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="Top US Companies with the Highest Open Interest Change"
|
||||
description="Explore the largest US companies ranked by their highest open interest change."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="A list of stocks with the highest changes in open interest (OI). Open interest represents the total number of outstanding options contracts available for trading."
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@ -26,6 +27,11 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="Top US Companies with the Highest Open Interest"
|
||||
description="Explore the largest US companies ranked by their highest open interest."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="A list of stocks with the highest open interest (OI). Open interest represents the total number of outstanding options contracts available for trading."
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@ -26,6 +27,11 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="Top US Companies with the highest IV Rank"
|
||||
description="Explore the largest US companies ranked by their IV Rank."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="A list of stocks with the highest Implied Volatility (IV) Rank and a minimum of 1 million open interest (OI). IV Rank measures a stock's current implied volatility compared to its range over a specific period, helping identify potential opportunities in the options market."
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@ -26,6 +27,11 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="Top US Companies with the highest total Options Premium"
|
||||
description="Explore the largest US companies ranked by their Options Premium."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="A list of stocks with the highest total options premium. This premium is the sum of all options contract premiums for each stock, reflecting the overall market sentiment and expectations for volatility."
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
import { abbreviateNumber } from "$lib/utils";
|
||||
import Table from "$lib/components/Table/Table.svelte";
|
||||
import Infobox from "$lib/components/Infobox.svelte";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
let rawData = data?.getMagnificentSeven;
|
||||
@ -12,6 +13,11 @@
|
||||
rawData?.reduce((total, stock) => total + stock?.revenue, 0) ?? 0;
|
||||
</script>
|
||||
|
||||
<SEO
|
||||
title="A List of All Magnificent Seven Stocks"
|
||||
description="The Magnificent Seven stocks refer to seven leading U.S. technology companies: Meta (formerly Facebook), Amazon, Apple, Microsoft, Nvidia, Alphabet (Google), and Tesla."
|
||||
/>
|
||||
|
||||
<section class="w-full overflow-hidden m-auto">
|
||||
<Infobox
|
||||
text="The magnificent seven stocks are 7 technology stocks that drove a large
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user