import { HighlightHeading, Subheading } from "@/components/site/typography" import { Box, Container, Flex, Icon, Square, Stack, VStack, } from "@chakra-ui/react" import { Blob } from "./blob" import { BlitzIcon, GatsbyIcon, NextJSIcon, RedwoodJSIcon, RemixJSIcon, ViteIcon, } from "./icons" const FRAMEWORKS = [ { title: "Next JS", icon: NextJSIcon }, { title: "Vite", icon: ViteIcon }, { title: "Remix JS", icon: RemixJSIcon }, { title: "Gatsby", icon: GatsbyIcon }, { title: "Redwood JS", icon: RedwoodJSIcon }, ] const FrameworksList = () => ( *": { "--border-width": "0.5px", border: "solid var(--border-width)", borderColor: { _light: "inherit", _dark: "#001B18" }, mr: "calc(var(--border-width) * -1)", mb: "calc(var(--border-width) * -1)", }, }} > {FRAMEWORKS.map((framework) => ( ))} ) export const FrameworkSection = () => { return ( Works with your favorite application framework Chakra provides a consistent developer experience for most modern frameworks ) }