rework header

This commit is contained in:
m5r
2021-09-01 23:44:15 +08:00
parent 8699f587f9
commit c41fea755d
4 changed files with 93 additions and 11 deletions

View File

@ -0,0 +1,12 @@
import type { BlitzPage } from "blitz";
import Layout from "../components/layout";
const Features: BlitzPage = () => {
return <div>Coming soon! Please come back later &#128075;</div>;
};
Features.getLayout = (page) => <Layout title="Features">{page}</Layout>;
Features.suppressFirstRenderFlicker = true;
export default Features;

View File

@ -0,0 +1,12 @@
import type { BlitzPage } from "blitz";
import Layout from "../components/layout";
const Pricing: BlitzPage = () => {
return <div>Coming soon! Please come back later &#128075;</div>;
};
Pricing.getLayout = (page) => <Layout title="Pricing">{page}</Layout>;
Pricing.suppressFirstRenderFlicker = true;
export default Pricing;