diff --git a/src/routes/etf/[tickerID]/+page.svelte b/src/routes/etf/[tickerID]/+page.svelte index 9f156ede..7c204eea 100644 --- a/src/routes/etf/[tickerID]/+page.svelte +++ b/src/routes/etf/[tickerID]/+page.svelte @@ -17,6 +17,7 @@ } from "$lib/store"; import { onDestroy, onMount } from "svelte"; import WIIM from "$lib/components/WIIM.svelte"; + import SEO from "$lib/components/SEO.svelte"; import News from "$lib/components/News.svelte"; import ETFSidecard from "$lib/components/ETFSidecard.svelte"; @@ -666,44 +667,10 @@ } - - - - - {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} - {data?.companyName} ({$etfTicker}) Stock Price, Quote & News · Stocknear - - - - - - - - - - - - - - - - - += 0 ? "▲" : "▼"} ${displayLegend?.change}%`} + description={`Get a real-time ${data?.companyName} (${$etfTicker}) stock chart, price quote with breaking news, financials, statistics, charts and more.`} +/>
diff --git a/src/routes/stocks/[tickerID]/+page.svelte b/src/routes/stocks/[tickerID]/+page.svelte index f6f860a2..5acb01ac 100644 --- a/src/routes/stocks/[tickerID]/+page.svelte +++ b/src/routes/stocks/[tickerID]/+page.svelte @@ -4,7 +4,6 @@ import { getCache, setCache, - numberOfUnreadNotification, globalForm, realtimePrice, priceIncrease, @@ -18,6 +17,7 @@ import { onDestroy, onMount } from "svelte"; //import BullBearSay from "$lib/components/BullBearSay.svelte"; import WIIM from "$lib/components/WIIM.svelte"; + import SEO from "$lib/components/SEO.svelte"; import News from "$lib/components/News.svelte"; import NextEarnings from "$lib/components/NextEarnings.svelte"; @@ -669,44 +669,10 @@ } - - - - - {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} - {data?.companyName} ({$stockTicker}) Stock Price, Quote & News · Stocknear - - - - - - - - - - - - - - - - - += 0 ? "▲" : "▼"} ${displayLegend?.change}%`} + description={`Get a real-time ${data?.companyName} (${$stockTicker}) stock chart, price quote with breaking news, financials, statistics, charts and more.`} +/>