start public pages footer
This commit is contained in:
@ -5,6 +5,7 @@ import Header from "../components/header";
|
||||
import ReferralBanner from "../components/referral-banner";
|
||||
import Hero from "../components/hero";
|
||||
import FAQs from "../components/faqs";
|
||||
import Footer from "../components/footer";
|
||||
|
||||
const LandingPage: BlitzPage = () => {
|
||||
return (
|
||||
@ -28,6 +29,8 @@ const LandingPage: BlitzPage = () => {
|
||||
<Hero />
|
||||
<FAQs />
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</section>
|
||||
</section>
|
||||
</>
|
||||
|
@ -4,6 +4,7 @@ import { Head, useQuery } from "blitz";
|
||||
import getMetrics from "../queries/get-metrics";
|
||||
|
||||
import Header from "../components/header";
|
||||
import Footer from "../components/footer";
|
||||
|
||||
const initialData = {
|
||||
phoneNumbers: 0,
|
||||
@ -48,6 +49,8 @@ const OpenMetrics: BlitzPage = () => {
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</section>
|
||||
</section>
|
||||
</>
|
||||
|
@ -4,6 +4,7 @@ import clsx from "clsx";
|
||||
import { CheckIcon, XIcon, TerminalIcon } from "@heroicons/react/solid";
|
||||
|
||||
import Header from "../components/header";
|
||||
import Footer from "../components/footer";
|
||||
|
||||
const Roadmap: BlitzPage = () => {
|
||||
return (
|
||||
@ -97,6 +98,8 @@ const Roadmap: BlitzPage = () => {
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</section>
|
||||
</section>
|
||||
</>
|
||||
|
Reference in New Issue
Block a user