import { Box, Flex, Heading, Stack, Text, useColorModeValue } from "@chakra-ui/react"; export interface SectionInfo { number: string; title: string; desc: string; } export interface SectionProps { section: SectionInfo; } export const PolicySectionCard = ({ section }: SectionProps) => { const backgroundColor = useColorModeValue("gray.200", "gray.700"); return ( {section.number} {section.title} {section.desc} ); };