Skip to content

Commit

Permalink
Add copyright and brand to the footer.
Browse files Browse the repository at this point in the history
  • Loading branch information
DFINITYManu committed Aug 15, 2024
1 parent 5fd63c1 commit c8f68b7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions rollout-dashboard/frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
import { type RolloutResult, rollout_query } from "./lib/stores";
import Rollout from "./lib/Rollout.svelte";
import { writable } from "svelte/store";
import { ButtonGroup, Button } from "flowbite-svelte";
import { Footer, FooterLink, FooterLinkGroup } from "flowbite-svelte";
import { ButtonGroup, Button, FooterCopyright } from "flowbite-svelte";
import {
Footer,
FooterLink,
FooterLinkGroup,
FooterBrand,
} from "flowbite-svelte";
import { SvelteToast } from "@zerodevx/svelte-toast";
let my_rollout_query = writable({
Expand Down Expand Up @@ -89,7 +94,10 @@
{/each}

<Footer>
<div class="sm:flex sm:items-center sm:justify-center">
<div class="sm:flex sm:items-center sm:justify-between">
<FooterCopyright>DFINITY Foundation</FooterCopyright>
<FooterBrand name="Rollout dashboard" src="favicon-512x512.png"
></FooterBrand>
<FooterLinkGroup
ulClass="flex flex-wrap items-center mt-3 text-sm text-gray-500 dark:text-gray-400 sm:mt-0"
>
Expand Down

0 comments on commit c8f68b7

Please sign in to comment.