import * as React from 'react'; import logo from '@/assets/logo.svg'; import { Head } from '@/components/seo'; import { Link } from '@/components/ui/link'; type LayoutProps = { children: React.ReactNode; title: string; }; export const Layout = ({ children, title }: LayoutProps) => { return ( <>
Workflow

{title}

{children}
); };