import { Heading, Wrap, WrapItem } from "@teste-ui/react" import { Layout } from "../../components/Layout" import { properties } from "../../utils/sample-data" import { PropertySummary } from "../../components/PropertySummary" import { NextChakraLink } from "../../components/NextChakraLink" import { Chakra } from "../../Chakra" interface PropertiesProps { cookies?: string } const PropertiesPage = ({ cookies }: PropertiesProps) => ( Available this weekend {properties.map((property) => ( ))} ) export default PropertiesPage export { getServerSideProps } from "../../Chakra"