From b3d35b7d8e58b369639f716e4e898a539c759ec0 Mon Sep 17 00:00:00 2001 From: cedoor Date: Tue, 7 Nov 2023 12:50:27 +0000 Subject: [PATCH] refactor(website): make footbar responsive --- apps/website/src/components/Footer.tsx | 45 +++++++++++++++++--------- 1 file changed, 29 insertions(+), 16 deletions(-) diff --git a/apps/website/src/components/Footer.tsx b/apps/website/src/components/Footer.tsx index 48152e326..e78a29d40 100644 --- a/apps/website/src/components/Footer.tsx +++ b/apps/website/src/components/Footer.tsx @@ -1,14 +1,16 @@ -import { Divider, Heading, HStack, Link, Text, VStack } from "@chakra-ui/react" +import { Divider, Heading, HStack, Link, Stack, Text, VStack } from "@chakra-ui/react" import Image from "next/image" import NextLink from "next/link" import IconArrowUpRight from "../icons/IconArrowUpRight" import IconDiscord from "../icons/IconDiscord" +import IconThumbsUp from "../icons/IconThumbsUp" export default function Footer() { return ( - - Semaphore logo - + + Semaphore logo + + Projects @@ -48,22 +50,33 @@ export default function Footer() { - + - - - - - Discord - - - + + + + + + Discord + + + + + + + + + Give feedback about the website + + + - - Copyright © 2023 Ethereum Foundation - + + Copyright © 2023 Ethereum Foundation + + ) }