optimize seo
This commit is contained in:
parent
c478f3c635
commit
5d14122b00
@ -712,7 +712,7 @@
|
||||
<div
|
||||
class="flex flex-row justify-between items-center w-full sm:-mt-[50px] mb-5 sm:mb-10"
|
||||
>
|
||||
<div
|
||||
<h1
|
||||
class="text-2xl lg:text-3xl font-bold text-white"
|
||||
>
|
||||
{$displayCompanyName?.length > charNumber
|
||||
@ -722,7 +722,7 @@
|
||||
<span class="hidden sm:inline-block"
|
||||
>({$etfTicker?.toUpperCase()})</span
|
||||
>
|
||||
</div>
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<div
|
||||
|
||||
@ -148,6 +148,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="google" />
|
||||
<button
|
||||
aria-label="Google Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverGoogle}
|
||||
on:mouseleave={handleHoverGoogle}
|
||||
@ -197,6 +198,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="discord" />
|
||||
<button
|
||||
aria-label="Discord Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverDiscord}
|
||||
on:mouseleave={handleHoverDiscord}
|
||||
@ -731,6 +733,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="github" />
|
||||
<button
|
||||
aria-label="Github Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverGithub}
|
||||
on:mouseleave={handleHoverGithub}
|
||||
|
||||
@ -1,45 +1,14 @@
|
||||
<script lang="ts">
|
||||
import { numberOfUnreadNotification } from "$lib/store";
|
||||
import logo from "$lib/images/newsletter.png";
|
||||
import SEO from "$lib/components/SEO.svelte";
|
||||
|
||||
export let data;
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>
|
||||
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Free
|
||||
Market Newsletter: Stay Informed in Just 2 Minutes Per Day · Stocknear
|
||||
</title>
|
||||
<meta
|
||||
name="description"
|
||||
content={`Get our free newsletter to be up to date with the current market.`}
|
||||
/>
|
||||
|
||||
<!-- Other meta tags -->
|
||||
<meta
|
||||
property="og:title"
|
||||
content={`Free Market Newsletter: Stay Informed in Just 2 Minutes Per Day · Stocknear`}
|
||||
/>
|
||||
<meta
|
||||
property="og:description"
|
||||
content={`Get our free newsletter to be up to date with the current market.`}
|
||||
/>
|
||||
<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={`Free Market Newsletter: Stay Informed in Just 2 Minutes Per Day · Stocknear`}
|
||||
/>
|
||||
<meta
|
||||
name="twitter:description"
|
||||
content={`Get our free newsletter to be up to date with the current market.`}
|
||||
/>
|
||||
<!-- Add more Twitter meta tags as needed -->
|
||||
</svelte:head>
|
||||
<SEO
|
||||
title="Market Newsletter: Stay Informed in Just 2 Minutes Per Day"
|
||||
description="Stay ahead in the market with our free newsletter! Get the latest updates, trends, and insights delivered straight to your inbox."
|
||||
/>
|
||||
|
||||
<div class="w-full max-w-7xl min-h-screen text-white m-auto mt-5">
|
||||
<main
|
||||
|
||||
@ -159,6 +159,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="google" />
|
||||
<button
|
||||
aria-label="Google Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverGoogle}
|
||||
on:mouseleave={handleHoverGoogle}
|
||||
@ -206,6 +207,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="discord" />
|
||||
<button
|
||||
aria-label="Discord Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverDiscord}
|
||||
on:mouseleave={handleHoverDiscord}
|
||||
@ -740,6 +742,7 @@
|
||||
<form method="post" action="?/oauth2">
|
||||
<input class="hidden" name="provider" value="github" />
|
||||
<button
|
||||
aria-label="Github Login"
|
||||
on:click={() => (oauthLoading = !oauthLoading)}
|
||||
on:mouseenter={handleHoverGithub}
|
||||
on:mouseleave={handleHoverGithub}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user