summaryrefslogtreecommitdiff
path: root/examples/portfolio-svelte/src/components/Footer.svelte
blob: 0a91c426cd86009a3e9e9596ec6f54c571612195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
    export let name = "Jeanine White";
</script>

<footer>
    &copy; {new Date().getFullYear()} {name}
    <small>🚀 Built with Astro</small>
</footer>

<style>
    footer {
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    small {
        display: block;
        margin-top: 1rem;
        color: var(--t-subdue);
        font-size: var(--f-d2);
        text-transform: uppercase;
    }
</style>