-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfd1db1
commit ed048f5
Showing
5 changed files
with
74 additions
and
57 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script lang="ts"> | ||
let props = $props(); | ||
</script> | ||
|
||
<svg | ||
class={props.class} | ||
viewBox="0 0 256 44" | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="256" | ||
height="44" | ||
fill="none" | ||
><path | ||
fill="#fff" | ||
d="M43.803.732h5.688c8.429 0 16.12 3.195 21.95 8.452V.732h11.036V44H71.442V33.91c-.07-10.318-7.113-18.963-16.604-21.363V44H43.803V.732ZM11.035 24.098V.732H0v23.366C0 35.09 8.817 44 19.694 44c10.877 0 19.695-8.91 19.695-19.902V.732H28.353v23.366c0 4.833-3.876 8.75-8.659 8.75-4.782 0-8.659-3.917-8.659-8.75ZM186.597 44h-5.687V.732h11.035V32.18c9.416-2.409 16.384-11.028 16.384-21.292V.732h11.035v10.155c0 18.288-14.671 33.113-32.767 33.113ZM97.926.732V44H86.891V.732h11.035ZM256 .732h-32.222V44H256V32.849h-21.187v-4.907h14.634V16.79h-14.634v-4.907H256V.732Z" | ||
/><path | ||
fill="#fff" | ||
fill-rule="evenodd" | ||
d="M133.68 22.366c0-11.948 9.585-21.634 21.408-21.634s21.408 9.686 21.408 21.634S166.911 44 155.088 44s-21.408-9.686-21.408-21.634Zm21.408-10.482c-5.729 0-10.373 4.693-10.373 10.482 0 5.79 4.644 10.483 10.373 10.483 5.729 0 10.373-4.693 10.373-10.483 0-5.789-4.644-10.482-10.373-10.482Z" | ||
clip-rule="evenodd" | ||
/><path | ||
fill="#fff" | ||
d="M113.375 22.366c0-5.789 4.645-10.482 10.373-10.482h5.518V.732h-5.518c-11.823 0-21.408 9.686-21.408 21.634S111.925 44 123.748 44h5.518V32.849h-5.518c-5.728 0-10.373-4.693-10.373-10.483Z" | ||
/></svg | ||
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<script lang="ts"> | ||
import Stack from '$lib/components/layout/stack.svelte'; | ||
import UnicoveWordmark from '$lib/assets/unicove-wordmark.svelte'; | ||
import bgDesktop from '$lib/assets/hero/[email protected]?enhanced'; | ||
import bgMobile from '$lib/assets/hero/[email protected]?enhanced'; | ||
let { networkName, networkLogo } = $props(); | ||
</script> | ||
|
||
<section id="hero" class="col-span-full grid grid-cols-subgrid gap-y-14 pt-6 md:items-center"> | ||
<div id="hero-background" class="col-span-full row-start-1 hidden md:block"> | ||
<enhanced:img class="w-auto object-contain" src={bgDesktop} alt="" fetchpriority="high" /> | ||
</div> | ||
|
||
<picture | ||
id="network-logo" | ||
class="relative col-span-full row-start-1 -ml-4 grid w-screen place-items-center md:col-start-7 md:ml-0 md:w-auto xl:col-start-6" | ||
> | ||
<img | ||
class="z-10 w-[41%] max-w-72 object-contain md:w-full" | ||
src={networkLogo} | ||
alt={networkName} | ||
fetchpriority="high" | ||
/> | ||
<enhanced:img | ||
class="absolute left-1/2 top-0 -translate-x-1/2 object-contain md:hidden" | ||
src={bgMobile} | ||
alt="" | ||
fetchpriority="high" | ||
/> | ||
</picture> | ||
|
||
<!-- Text block --> | ||
<Stack | ||
class="z-10 col-span-full grid gap-5 md:col-span-5 md:col-start-1 md:row-start-1 lg:col-span-4 lg:col-start-1 xl:col-start-2" | ||
> | ||
<UnicoveWordmark class="h-7 w-auto md:h-auto" /> | ||
<h1 class="text-balance text-3xl font-bold leading-tight lg:text-4xl lg:leading-tight"> | ||
<span class="sr-only">Unicove:</span> | ||
Your gateway to the {networkName} Network | ||
</h1> | ||
<p class="text-muted mb-2 text-balance text-xl leading-tight lg:text-xl lg:leading-tight"> | ||
Stake, Send, Manage Tokens, and Explore {networkName} – all with ease | ||
</p> | ||
<!-- <Button href={`/${data.network}/signup`}>Create your EOS account now</Button> --> | ||
</Stack> | ||
</section> |