import React, { ReactNode } from "react"; import Head from "next/head"; import Link from "next/link"; type Props = { children: ReactNode, title?: string, }; const Layout = ({ children, title = "TypeScript Next.js Stripe Example" }: Props) => ( <> {title}

🍕 SWAG

Powered by the{" "} use-shopping-cart library.

{children}
); export default Layout;