import { Center, Container, HStack, Icon, Link, Stack, Text, VStack, } from "@chakra-ui/react"; import React from "react"; import { RiExternalLinkLine } from "react-icons/ri"; import { BLOG_URL, DISCORD_INVITE_URL, DOCS_URL } from "../constants"; const sections = [ { title: "Docs", items: [ { title: "Tutorial", isExternal: false, href: `${DOCS_URL}`, }, ], }, { title: "Community", items: [ { title: "Discord", isExternal: true, href: DISCORD_INVITE_URL, }, { title: "Twitter", isExternal: true, href: "https://twitter.com/StrataProtocol", }, ], }, { title: "More", items: [ { title: "Blog", isExternal: false, href: BLOG_URL, }, { title: "GitHub", isExternal: true, href: "https://github.com/StrataFoundation/strata", }, ], }, ]; export const Footer = () => { return ( {sections.map(({ title, items }) => ( {title} {items.map((item) => ( {item.title} {item.isExternal && } ))} ))}
Copyright © 2022 Strata Foundation.
); };