diff --git a/pages/_app.tsx b/pages/_app.tsx index 0c1c46a..9c05d8c 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -2,6 +2,7 @@ import "../styles/globals.css"; import "react-cmdk/dist/cmdk.css"; import PricingModal from "../components/PricingModal"; import Seo from "../components/Seo"; +import Stack from "../components/Stack"; import WelcomeModal from "../components/WelcomeModal"; import axios from "axios"; import splitbee from "@splitbee/web"; @@ -9,9 +10,9 @@ import type { AppProps } from "next/app"; import { Inter } from "@next/font/google"; import { SchemaContext } from "../lib/context"; import { Toaster } from "react-hot-toast"; +import { classNames } from "react-cmdk"; import { useEffect, useState } from "react"; import { useRouter } from "next/dist/client/router"; -import { classNames } from "react-cmdk"; export const inter = Inter({ subsets: ["latin"], @@ -106,7 +107,7 @@ function MyApp({ Component, pageProps }: AppProps) { }, }} > -
+
{!hasSeenWelcomeModal && ( )} @@ -115,12 +116,30 @@ function MyApp({ Component, pageProps }: AppProps) { )} - - +
+ + +
+ +