the beginnings of a footer
This commit is contained in:
parent
d2dbc3e3b6
commit
3c05d69ad0
4 changed files with 50 additions and 16 deletions
|
@ -1,20 +1,9 @@
|
||||||
|
<script>
|
||||||
|
import FemtoStarLogo from "./FemtoStarLogo.svelte";
|
||||||
|
</script>
|
||||||
|
|
||||||
<div class="femtoHeader">
|
<div class="femtoHeader">
|
||||||
<svg
|
<FemtoStarLogo />
|
||||||
width="128"
|
|
||||||
height="100"
|
|
||||||
viewBox="0 0 32 25"
|
|
||||||
fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d="M0 0H14.6453V4.5H5.05011V10.0714H14.2846V14.3571H5.05011V25H0V0Z"
|
|
||||||
fill="#FFFFFF"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M20.7094 15.6786L17.2104 13.1786L21.3587 8.75L15.4068 7.5L16.7054 3.5L22.2605 6.03572L21.5751 0H25.8317L25.1463 6.03572L30.7014 3.5L32 7.5L26.0481 8.75L30.1964 13.1786L26.6974 15.6786L23.7034 10.4286L20.7094 15.6786Z"
|
|
||||||
fill="#FFFFFF"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
<h2>Satellite communications, done differently.</h2>
|
<h2>Satellite communications, done differently.</h2>
|
||||||
|
|
||||||
<div class="introText">
|
<div class="introText">
|
||||||
|
|
22
src/components/FemtoStarLogo.svelte
Normal file
22
src/components/FemtoStarLogo.svelte
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<script>
|
||||||
|
export let width = 128;
|
||||||
|
export let height = 100;
|
||||||
|
export let color = "#FFFFFF";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svg
|
||||||
|
{width}
|
||||||
|
{height}
|
||||||
|
viewBox="0 0 32 25"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M0 0H14.6453V4.5H5.05011V10.0714H14.2846V14.3571H5.05011V25H0V0Z"
|
||||||
|
fill={color}
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M20.7094 15.6786L17.2104 13.1786L21.3587 8.75L15.4068 7.5L16.7054 3.5L22.2605 6.03572L21.5751 0H25.8317L25.1463 6.03572L30.7014 3.5L32 7.5L26.0481 8.75L30.1964 13.1786L26.6974 15.6786L23.7034 10.4286L20.7094 15.6786Z"
|
||||||
|
fill={color}
|
||||||
|
/>
|
||||||
|
</svg>
|
20
src/components/Footer.svelte
Normal file
20
src/components/Footer.svelte
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<script>
|
||||||
|
import FemtoStarLogo from "./FemtoStarLogo.svelte";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<FemtoStarLogo height={42} width={33} color="#FFFFFF75" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
div {
|
||||||
|
font-weight: 300;
|
||||||
|
background-color: #00111d;
|
||||||
|
color: white;
|
||||||
|
width: 100%;
|
||||||
|
height: 48px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1,4 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
|
import Footer from "../components/Footer.svelte";
|
||||||
import Nav from "../components/Nav.svelte";
|
import Nav from "../components/Nav.svelte";
|
||||||
|
|
||||||
export let segment;
|
export let segment;
|
||||||
|
@ -8,6 +9,8 @@
|
||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
|
|
||||||
|
<Footer />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
:global(body) {
|
:global(body) {
|
||||||
background-color: #00111d;
|
background-color: #00111d;
|
||||||
|
|
Loading…
Reference in a new issue