import { Flex, FlexProps, Stack, StackProps } from '@metafam/ds'; import { HeadComponent } from './Seo'; const PageContainer: React.FC = ({ children, ...props }) => ( {children} ); export default PageContainer; export const FlexContainer: React.FC = ({ children, ...props }) => ( {children} ); type EmbedProps = { title: string; description: string; url: string; } & FlexProps; export const EmbedContainer: React.FC = ({ title, description, url, ...props }) => (