import Layout from "src/core/layouts/Layout" import { BlitzPage } from "@blitzjs/next" import styles from 'src/styles/Home.module.css' /* * This file is just for a pleasant getting started page for your new app. * You can delete everything in here and start from scratch if you like. */ const Home: BlitzPage = () => { return (

Congrats! Your app is ready.

) } export default Home