diff --git a/website/src/routes/gambling/+page.svelte b/website/src/routes/gambling/+page.svelte
index f1ba406..96183d1 100644
--- a/website/src/routes/gambling/+page.svelte
+++ b/website/src/routes/gambling/+page.svelte
@@ -7,6 +7,7 @@
import { toast } from 'svelte-sonner';
import SignInConfirmDialog from '$lib/components/self/SignInConfirmDialog.svelte';
import { Button } from '$lib/components/ui/button';
+ import SEO from '$lib/components/self/SEO.svelte';
let shouldSignIn = $state(false);
let balance = $state(0);
@@ -36,11 +37,15 @@
});
+
Gambling
diff --git a/website/src/routes/hopium/+page.svelte b/website/src/routes/hopium/+page.svelte
index d673a78..38da00b 100644
--- a/website/src/routes/hopium/+page.svelte
+++ b/website/src/routes/hopium/+page.svelte
@@ -7,10 +7,10 @@
import { Input } from '$lib/components/ui/input';
import { Label } from '$lib/components/ui/label';
import { Badge } from '$lib/components/ui/badge';
- import { Skeleton } from '$lib/components/ui/skeleton';
import * as Avatar from '$lib/components/ui/avatar';
import UserProfilePreview from '$lib/components/self/UserProfilePreview.svelte';
import HopiumSkeleton from '$lib/components/self/skeletons/HopiumSkeleton.svelte';
+ import SEO from '$lib/components/self/SEO.svelte';
import {
TrendingUp,
TrendingDown,
@@ -19,8 +19,6 @@
Sparkles,
Globe,
Loader2,
- CheckCircle,
- XCircle,
CheckIcon,
XIcon
} from 'lucide-svelte';
@@ -124,13 +122,11 @@
});
-
- Hopium - Prediction Market | Rugplay
-
-
+
diff --git a/website/src/routes/hopium/[id]/+page.svelte b/website/src/routes/hopium/[id]/+page.svelte
index 1152149..57a5227 100644
--- a/website/src/routes/hopium/[id]/+page.svelte
+++ b/website/src/routes/hopium/[id]/+page.svelte
@@ -9,6 +9,7 @@
import * as Avatar from '$lib/components/ui/avatar';
import { Separator } from '$lib/components/ui/separator';
import UserProfilePreview from '$lib/components/self/UserProfilePreview.svelte';
+ import SEO from '$lib/components/self/SEO.svelte';
import {
Loader2,
Calculator,
@@ -194,14 +195,15 @@
);
-
- {#if question}
- {question.question} - Rugplay
-
- {:else}
- Hopium - Rugplay
- {/if}
-
+
{#if loading}
@@ -591,8 +593,12 @@
>
-
{bet.user?.name || "Deleted User"}
-
@{bet.user?.username || "deleted_user"}
+
+ {bet.user?.name || 'Deleted User'}
+
+
+ @{bet.user?.username || 'deleted_user'}
+
diff --git a/website/src/routes/leaderboard/+page.svelte b/website/src/routes/leaderboard/+page.svelte
index 4b3013d..979e434 100644
--- a/website/src/routes/leaderboard/+page.svelte
+++ b/website/src/routes/leaderboard/+page.svelte
@@ -1,15 +1,14 @@
-
- Leaderboard - Rugplay
-
+
diff --git a/website/src/routes/legal/privacy/+page.svelte b/website/src/routes/legal/privacy/+page.svelte
index 43e79fb..9922b08 100644
--- a/website/src/routes/legal/privacy/+page.svelte
+++ b/website/src/routes/legal/privacy/+page.svelte
@@ -6,30 +6,17 @@
import ShieldCheck from 'lucide-svelte/icons/shield-check';
import AlertTriangle from 'lucide-svelte/icons/alert-triangle';
import { goto } from '$app/navigation';
- import { page } from '$app/state';
+ import SEO from '$lib/components/self/SEO.svelte';
const LAST_UPDATED = 'May 29, 2025';
const CONTACT_EMAIL = 'privacy@outpoot.com';
-
- Privacy Policy - Rugplay
-
-
-
-
-
-
-
+
diff --git a/website/src/routes/legal/terms/+page.svelte b/website/src/routes/legal/terms/+page.svelte
index 056f687..6af532f 100644
--- a/website/src/routes/legal/terms/+page.svelte
+++ b/website/src/routes/legal/terms/+page.svelte
@@ -7,13 +7,19 @@
import AlertTriangle from 'lucide-svelte/icons/alert-triangle';
import TrendingDown from 'lucide-svelte/icons/trending-down';
import { goto } from '$app/navigation';
- import { page } from '$app/state';
+ import SEO from '$lib/components/self/SEO.svelte';
const LAST_UPDATED = 'May 29, 2025';
const CONTACT_EMAIL = 'contact@outpoot.com';
const MINIMUM_AGE = 18;
+
+
diff --git a/website/src/routes/live/+page.svelte b/website/src/routes/live/+page.svelte
index 4b3fe46..ad2b722 100644
--- a/website/src/routes/live/+page.svelte
+++ b/website/src/routes/live/+page.svelte
@@ -10,6 +10,7 @@
import CoinIcon from '$lib/components/self/CoinIcon.svelte';
import UserProfilePreview from '$lib/components/self/UserProfilePreview.svelte';
import LiveTradeSkeleton from '$lib/components/self/skeletons/LiveTradeSkeleton.svelte';
+ import SEO from '$lib/components/self/SEO.svelte';
function handleUserClick(username: string) {
goto(`/user/${username}`);
@@ -20,6 +21,12 @@
}
+
+
Live Trades - Rugplay
diff --git a/website/src/routes/market/+page.svelte b/website/src/routes/market/+page.svelte
index 65b9054..0d21a48 100644
--- a/website/src/routes/market/+page.svelte
+++ b/website/src/routes/market/+page.svelte
@@ -9,20 +9,12 @@
import { Label } from '$lib/components/ui/label';
import CoinIcon from '$lib/components/self/CoinIcon.svelte';
import MarketSkeleton from '$lib/components/self/skeletons/MarketSkeleton.svelte';
+ import SEO from '$lib/components/self/SEO.svelte';
import { onMount } from 'svelte';
import { toast } from 'svelte-sonner';
import { goto } from '$app/navigation';
import { page } from '$app/stores';
- import {
- Search,
- RefreshCw,
- SlidersHorizontal,
- ChevronLeft,
- ChevronRight,
- DollarSign,
- TrendingUp,
- ArrowUpDown
- } from 'lucide-svelte';
+ import { Search, RefreshCw, SlidersHorizontal, ChevronLeft, ChevronRight } from 'lucide-svelte';
import { formatPrice, formatMarketCap, debounce, formatRelativeTime } from '$lib/utils';
import { MediaQuery } from 'svelte/reactivity';
import type { CoinData, FilterOption, VolatilityBadge, MarketResponse } from '$lib/types/market';
@@ -240,13 +232,11 @@
);
-
- Market - Rugplay
-
-
+
diff --git a/website/src/routes/portfolio/+page.svelte b/website/src/routes/portfolio/+page.svelte
index 13a013e..9554747 100644
--- a/website/src/routes/portfolio/+page.svelte
+++ b/website/src/routes/portfolio/+page.svelte
@@ -5,6 +5,7 @@
import CoinIcon from '$lib/components/self/CoinIcon.svelte';
import DataTable from '$lib/components/self/DataTable.svelte';
import PortfolioSkeleton from '$lib/components/self/skeletons/PortfolioSkeleton.svelte';
+ import SEO from '$lib/components/self/SEO.svelte';
import { getPublicUrl, formatPrice, formatValue, formatQuantity, formatDate } from '$lib/utils';
import { onMount } from 'svelte';
import { toast } from 'svelte-sonner';
@@ -161,9 +162,12 @@
]);
-
- Portfolio - Rugplay
-
+