import { Center, Container, HStack, Icon, Link, Stack, Text, VStack, } from "@chakra-ui/react"; import React from "react"; import { RiExternalLinkLine } from "react-icons/ri"; const sections = [ { title: "Docs", items: [ { title: "Tutorial", href: "https://docs.strataprotocol.com/im/getting_started", }, ], }, { title: "Community", items: [ { title: "Discord", href: "https://discord.gg/XQhCFg77WM", }, { title: "Twitter", href: "https://twitter.com/StrataProtocol", }, ], }, { title: "Policies", items: [ { title: "Terms of Service", href: "/terms-of-service.pdf", }, { title: "Privacy Policy", href: "/privacy-policy.pdf", }, ], }, { title: "More", items: [ { title: "Blog", href: "https://www.strataprotocol.com/blog", }, { title: "GitHub", href: "https://github.com/StrataFoundation/strata", }, { title: "Launchpad", href: "https://app.strataprotocol.com", }, ], }, ]; export const Footer = () => { return ( {sections.map(({ title, items }) => ( {title} {items.map((item) => ( {item.title} ))} ))}
Copyright © 2022 Strata Foundation.
); };