import React from 'react'; import { Box, Button, Divider, Link, Text } from '@chakra-ui/react'; type EditContentPageLinkProps = { href: string; }; export function EditContentPageLink(props: EditContentPageLinkProps) { const { href } = props; return ( This page is a work in progress. Help us by writing a small introduction to the topic and suggesting a few links to read more about this topic. ); }