import Layout from "components/Layout";
import Head from "next/head";
export default function EmailPageRoot() {
return (
<>
Email Signup
Please provide your Name & Email
>
)
}
export function getStaticProps() {
return {
props: {
body_class_name: 'h-full'
}
}
}