diff --git a/src/routes/etf/[tickerID]/options/dex/+page.svelte b/src/routes/etf/[tickerID]/options/dex/+page.svelte
index e2f90f03..a65c590b 100644
--- a/src/routes/etf/[tickerID]/options/dex/+page.svelte
+++ b/src/routes/etf/[tickerID]/options/dex/+page.svelte
@@ -1,51 +1,16 @@
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Delta Exposure · Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- import {
- stockTicker,
- numberOfUnreadNotification,
- displayCompanyName,
- } from "$lib/store";
+ import { etfTicker, displayCompanyName } from "$lib/store";
import Infobox from "$lib/components/Infobox.svelte";
import GreekByExpiry from "$lib/components/Options/GreekByExpiry.svelte";
+ import SEO from "$lib/components/SEO.svelte";
export let data;
let rawData = data?.getData || [];
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Delta Exposure by Expiry · Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- import {
- stockTicker,
- numberOfUnreadNotification,
- displayCompanyName,
- } from "$lib/store";
+ import { etfTicker, displayCompanyName } from "$lib/store";
import Infobox from "$lib/components/Infobox.svelte";
+ import SEO from "$lib/components/SEO.svelte";
import GreekByStrike from "$lib/components/Options/GreekByStrike.svelte";
export let data;
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Delta Exposure by Strike Price ·
- Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- import {
- stockTicker,
- numberOfUnreadNotification,
- displayCompanyName,
- } from "$lib/store";
+ import { etfTicker, displayCompanyName } from "$lib/store";
import Infobox from "$lib/components/Infobox.svelte";
import GreekExposure from "$lib/components/Options/GreekExposure.svelte";
+ import SEO from "$lib/components/SEO.svelte";
export let data;
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Gamma Exposure · Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/src/routes/etf/[tickerID]/options/gex/expiry/+page.svelte b/src/routes/etf/[tickerID]/options/gex/expiry/+page.svelte
index d3e2086d..3aecea83 100644
--- a/src/routes/etf/[tickerID]/options/gex/expiry/+page.svelte
+++ b/src/routes/etf/[tickerID]/options/gex/expiry/+page.svelte
@@ -1,9 +1,6 @@
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Gamma Exposure by Expiry · Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
- import {
- stockTicker,
- numberOfUnreadNotification,
- displayCompanyName,
- } from "$lib/store";
+ import { etfTicker, displayCompanyName } from "$lib/store";
import Infobox from "$lib/components/Infobox.svelte";
+ import SEO from "$lib/components/SEO.svelte";
import GreekByStrike from "$lib/components/Options/GreekByStrike.svelte";
export let data;
-
-
-
-
- {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
- {$displayCompanyName} ({$stockTicker}) Gamma Exposure by Strike Price ·
- Stocknear
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ import { stockTicker, displayCompanyName } from "$lib/store";
+
import Infobox from "$lib/components/Infobox.svelte";
import GreekExposure from "$lib/components/Options/GreekExposure.svelte";
import SEO from "$lib/components/SEO.svelte";
@@ -8,7 +10,7 @@