rework header
This commit is contained in:
12
app/public-area/pages/features.tsx
Normal file
12
app/public-area/pages/features.tsx
Normal 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 👋</div>;
|
||||
};
|
||||
|
||||
Features.getLayout = (page) => <Layout title="Features">{page}</Layout>;
|
||||
Features.suppressFirstRenderFlicker = true;
|
||||
|
||||
export default Features;
|
12
app/public-area/pages/pricing.tsx
Normal file
12
app/public-area/pages/pricing.tsx
Normal 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 👋</div>;
|
||||
};
|
||||
|
||||
Pricing.getLayout = (page) => <Layout title="Pricing">{page}</Layout>;
|
||||
Pricing.suppressFirstRenderFlicker = true;
|
||||
|
||||
export default Pricing;
|
Reference in New Issue
Block a user