WIP React > Svelte
Put most of the developed design into Svelte
This commit is contained in:
30
src/molecules/Footer.svelte
Normal file
30
src/molecules/Footer.svelte
Normal file
@@ -0,0 +1,30 @@
|
||||
<script>
|
||||
// Svelte
|
||||
import { site, currentLocation } from '../store'
|
||||
|
||||
// Components
|
||||
import Switcher from '../molecules/Switcher'
|
||||
</script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="wrap">
|
||||
<div class="footer__left">
|
||||
<Switcher radius="30" />
|
||||
</div>
|
||||
|
||||
<div class="footer__right">
|
||||
<div class="instagram">
|
||||
<a href="https://instagram.com/{$site.instagram}" target="_blank">
|
||||
<img src="/img/icons/instagram.svg" alt="Instagram">
|
||||
<span>Instagram</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="cetrucflotte">
|
||||
<span>A project by</span>
|
||||
<a href="https://cetrucflotte.com" target="_blank">
|
||||
<img src="/img/logo-ctf.svg" alt="Cetrucflotte logo's">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
Reference in New Issue
Block a user