seo optimization
This commit is contained in:
parent
af65c67c1d
commit
c314f8548d
@ -109,11 +109,11 @@
|
|||||||
>
|
>
|
||||||
<div class="grid grid-cols-1 gap-4">
|
<div class="grid grid-cols-1 gap-4">
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
<h2
|
<h1
|
||||||
class="text-center text-white text-2xl sm:text-3xl pt-10 sm:pt-0 font-semibold"
|
class="text-center text-white text-2xl sm:text-3xl pt-10 sm:pt-0 font-semibold"
|
||||||
>
|
>
|
||||||
Sign In
|
Sign In
|
||||||
</h2>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="text-gray-400 text-center"> Welcome back! </span>
|
<span class="text-gray-400 text-center"> Welcome back! </span>
|
||||||
|
|||||||
@ -1721,9 +1721,9 @@
|
|||||||
class="fixed w-full h-fit sticky -top-6 z-40 bg-primary shadow-sm opacity-100 pb-6 pt-5 border-gray-600 border-b"
|
class="fixed w-full h-fit sticky -top-6 z-40 bg-primary shadow-sm opacity-100 pb-6 pt-5 border-gray-600 border-b"
|
||||||
>
|
>
|
||||||
<div class="flex flex-row items-center justify-between mb-2">
|
<div class="flex flex-row items-center justify-between mb-2">
|
||||||
<h2 class="text-white text-[1rem] sm:text-xl font-semibold">
|
<h1 class="text-white text-[1rem] sm:text-xl font-semibold">
|
||||||
Select screener filters ({allRows?.length} total)
|
Select screener filters ({allRows?.length} total)
|
||||||
</h2>
|
</h1>
|
||||||
<label
|
<label
|
||||||
for="ruleModal"
|
for="ruleModal"
|
||||||
class="inline-block cursor-pointer absolute right-0 top-3 text-[1.3rem] sm:text-[1.8rem] text-white"
|
class="inline-block cursor-pointer absolute right-0 top-3 text-[1.3rem] sm:text-[1.8rem] text-white"
|
||||||
|
|||||||
@ -40,15 +40,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
function checkPassword() {
|
|
||||||
hasLetter = /[a-zA-Z]/.test(password);
|
|
||||||
hasNumber = /\d/.test(password);
|
|
||||||
isLengthValid = password.length >= 8;
|
|
||||||
hasSpecialChar = /[!@#$%^&*()]/.test(password);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
let isHoveredGoogle = false;
|
let isHoveredGoogle = false;
|
||||||
let isHoveredDiscord = false;
|
let isHoveredDiscord = false;
|
||||||
let isHoveredGithub = false;
|
let isHoveredGithub = false;
|
||||||
@ -77,28 +68,6 @@
|
|||||||
/>
|
/>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<!--
|
|
||||||
<label class="w-full max-w-lg">
|
|
||||||
<input
|
|
||||||
class="input input-bordered w-full max-w-lg bg-secondary whitespace-normal ring-2"
|
|
||||||
type="password"
|
|
||||||
bind:value={password}
|
|
||||||
on:input={checkPassword}
|
|
||||||
/>
|
|
||||||
|
|
||||||
|
|
||||||
</label>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="flex flex-row w-full max-w-lg">
|
|
||||||
<svg class="w-6 h-6 inline-block " xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSBlockSix0"><path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M18 18h12v12H18V18ZM6 18h12v12H6V18Zm24 0h12v12H30V18Z"/></mask><path fill={hasLetter ? 'green' : 'red'} d="M0 0h48v48H0z" mask="url(#ipSBlockSix0)"/></svg>
|
|
||||||
<svg class="w-6 h-6 inline-block " xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSBlockSix0"><path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M18 18h12v12H18V18ZM6 18h12v12H6V18Zm24 0h12v12H30V18Z"/></mask><path fill={hasNumber ? 'green' : 'red'} d="M0 0h48v48H0z" mask="url(#ipSBlockSix0)"/></svg>
|
|
||||||
<svg class="w-6 h-6 inline-block " xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSBlockSix0"><path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M18 18h12v12H18V18ZM6 18h12v12H6V18Zm24 0h12v12H30V18Z"/></mask><path fill={isLengthValid ? 'green' : 'red'} d="M0 0h48v48H0z" mask="url(#ipSBlockSix0)"/></svg>
|
|
||||||
<svg class="w-6 h-6 inline-block " xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><mask id="ipSBlockSix0"><path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M18 18h12v12H18V18ZM6 18h12v12H6V18Zm24 0h12v12H30V18Z"/></mask><path fill={hasSpecialChar ? 'green' : 'red'} d="M0 0h48v48H0z" mask="url(#ipSBlockSix0)"/></svg>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
-->
|
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="relative w-full max-w-3xl mx-auto min-h-screen pb-40 sm:mt-10 {oauthLoading
|
class="relative w-full max-w-3xl mx-auto min-h-screen pb-40 sm:mt-10 {oauthLoading
|
||||||
? 'opacity-[0.2]'
|
? 'opacity-[0.2]'
|
||||||
@ -106,11 +75,11 @@
|
|||||||
>
|
>
|
||||||
<div class="grid grid-cols-1 gap-4">
|
<div class="grid grid-cols-1 gap-4">
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
<h2
|
<h1
|
||||||
class="text-center text-white text-2xl sm:text-3xl pt-10 sm:pt-0 font-semibold"
|
class="text-center text-white text-2xl sm:text-3xl pt-10 sm:pt-0 font-semibold"
|
||||||
>
|
>
|
||||||
Getting Started
|
Getting Started
|
||||||
</h2>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="text-gray-400 text-center">
|
<span class="text-gray-400 text-center">
|
||||||
|
|||||||
@ -733,7 +733,7 @@
|
|||||||
<div
|
<div
|
||||||
class="flex flex-row justify-between items-center w-full sm:-mt-[50px] mb-5 sm:mb-10"
|
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"
|
class="text-2xl lg:text-3xl font-bold text-white"
|
||||||
>
|
>
|
||||||
{$displayCompanyName?.length > charNumber
|
{$displayCompanyName?.length > charNumber
|
||||||
@ -743,7 +743,7 @@
|
|||||||
<span class="hidden sm:inline-block"
|
<span class="hidden sm:inline-block"
|
||||||
>({$stockTicker?.toUpperCase()})</span
|
>({$stockTicker?.toUpperCase()})</span
|
||||||
>
|
>
|
||||||
</div>
|
</h1>
|
||||||
<div
|
<div
|
||||||
class="sm:hidden items-end justify-end absolute right-3 top-14 {$scoreComponent ===
|
class="sm:hidden items-end justify-end absolute right-3 top-14 {$scoreComponent ===
|
||||||
false
|
false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user