-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
8 changed files
with
223 additions
and
168 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,77 +1,107 @@ | ||
<script lang="ts"> | ||
import { base } from '$app/paths'; | ||
import Whitepaper from '$lib/assets/media/DeepSquare_White-Paper-1.pdf'; | ||
import Yellowpaper from '$lib/assets/media/Yellow-Paper_Tokenize_HPC.pdf'; | ||
import logo from '$lib/assets/media/deepsquare-logo-h-neg-BIJELI-1.svg'; | ||
import poweredby from '$lib/assets/media/poweredby.svg'; | ||
import Nav from '$lib/components/Nav.svelte'; | ||
import { onNavigate } from '$app/navigation'; | ||
import { fade } from 'svelte/transition'; | ||
import '../app.scss'; | ||
import Footer from './Footer.svelte'; | ||
import Header from './Header.svelte'; | ||
const year = new Date().getFullYear(); | ||
import { fade } from 'svelte/transition'; | ||
onNavigate((navigation) => { | ||
if (!document.startViewTransition) return; | ||
return new Promise((resolve) => { | ||
document.startViewTransition(async () => { | ||
resolve(); | ||
await navigation.complete; | ||
}); | ||
}); | ||
}); | ||
</script> | ||
|
||
<Nav /> | ||
<Header /> | ||
|
||
<main in:fade={{ duration: 100, delay: 200 }} out:fade={{ duration: 100 }}> | ||
<slot /> | ||
</main> | ||
|
||
<footer> | ||
<div class="grid md:grid-cols-4 justify-around place-items-center"> | ||
<div class="md:col-span-2"> | ||
<div class="box"> | ||
<div class="py-4"> | ||
<img src={logo} alt="DeepSquare Logo" /> | ||
</div> | ||
<p> | ||
DeepSquare Association, Switzerland, is the founder and holds the initial governance of | ||
DeepSquare token. The Association’s purpose is to offer goods and services in the fields | ||
of information and communication technologies, software, hardware, and related consulting | ||
services. | ||
</p> | ||
<p> | ||
Copyright © {year} – <b>The DeepSquare Association</b> – CHE-130.663.967, Switzerland. | ||
</p> | ||
</div> | ||
</div> | ||
<div> | ||
<div> | ||
<div> | ||
<h5 class="py-4 m-0">Resources</h5> | ||
</div> | ||
<div> | ||
<aside> | ||
<nav> | ||
<ul> | ||
<li> | ||
<a href={Whitepaper}>Whitepaper</a> | ||
</li> | ||
<li> | ||
<a href={Yellowpaper}>Yellow Paper</a> | ||
</li> | ||
<li> | ||
<a href="https://docs.deepsquare.run/workflow/overview">Documentation</a> | ||
</li> | ||
<li> | ||
<a title="Terms and Conditions" href="{base}/terms-and-conditions" | ||
>Terms and Conditions</a | ||
> | ||
</li> | ||
<li> | ||
<a title="Privacy Policy" rel="privacy-policy" href="{base}/privacy-policy" | ||
>Privacy Policy</a | ||
> | ||
</li> | ||
</ul> | ||
</nav> | ||
</aside> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="py-4"> | ||
<img src={poweredby} alt="Powered by Avalanche" /> | ||
</div> | ||
</div> | ||
</footer> | ||
<Footer /> | ||
|
||
<style> | ||
@keyframes fade-in { | ||
from { | ||
opacity: 0; | ||
} | ||
} | ||
@keyframes fade-out { | ||
to { | ||
opacity: 0; | ||
} | ||
} | ||
@keyframes slide-from-right { | ||
from { | ||
transform: translateX(30px); | ||
} | ||
} | ||
@keyframes slide-to-left { | ||
to { | ||
transform: translateX(-30px); | ||
} | ||
} | ||
@keyframes -global-from-bottom { | ||
0% { | ||
transform: translateY(100vh); | ||
opacity: 0; | ||
} | ||
50% { | ||
opacity: 0; | ||
transform: translateY(20vh); | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes -global-from-bottom-slow { | ||
0% { | ||
opacity: 0; | ||
transform: translateY(10vh); | ||
} | ||
50% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes -global-from-left-slow { | ||
0% { | ||
opacity: 0; | ||
transform: translateX(-10vw); | ||
} | ||
50% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
@keyframes -global-from-right-slow { | ||
0% { | ||
opacity: 0; | ||
transform: translateX(10vw); | ||
} | ||
50% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
</style> |
Oops, something went wrong.