footer things

This commit is contained in:
m5r
2021-08-30 06:47:43 +08:00
parent d8f76f59db
commit 1d3bfd5e36
5 changed files with 46 additions and 7 deletions

12
app/blog/pages/blog.tsx Normal file
View File

@ -0,0 +1,12 @@
import type { BlitzPage } from "blitz";
import Layout from "../../public-area/components/layout";
const Blog: BlitzPage = () => {
return <article className="m-auto">Coming soon.</article>;
};
Blog.getLayout = (page) => <Layout title="Blog">{page}</Layout>;
Blog.suppressFirstRenderFlicker = true;
export default Blog;