import { Logo } from "@/components/logo" import { Box, Container, HStack, SimpleGrid, Stack, Text, } from "@chakra-ui/react" import Link from "next/link" const linkTree = [ { title: "Documentation", items: [ { label: "Components", href: "/docs/components/concepts/overview" }, { label: "Theming", href: "/docs/theming/overview" }, { label: "Styling", href: "/docs/styling/overview" }, { label: "Get Started", href: "/docs/get-started/installation" }, ], }, { title: "Projects", items: [ { label: "Chakra UI Pro", href: "https://pro.chakra-ui.com" }, { label: "FigPilot", href: "https://figma.chakra-ui.com" }, { label: "Zag.js", href: "https://zagjs.com" }, { label: "Ark UI", href: "https://ark-ui.com" }, ], }, { title: "Community", items: [ { label: "Discord", href: "https://discord.gg/chakra-ui" }, { label: "Twitter", href: "https://x.com/chakra_ui" }, { label: "GitHub", href: "https://github.com/chakra-ui/chakra-ui" }, ], }, ] export const FooterSection = () => { return ( ) } const VercelCredit = () => ( Deployed on ) const VercelLogo = () => { return ( ) }