🚧 Add more info about giving feedback in the open beta environment (#508)

This commit is contained in:
Luke Vella 2023-02-10 17:30:47 +00:00 committed by GitHub
parent 9586a072d4
commit ce3e5540db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 122 additions and 69 deletions

View file

@ -4,7 +4,6 @@ import "~/style.css";
import { Inter, Noto_Sans_Mono } from "@next/font/google";
import { inject } from "@vercel/analytics";
import { domAnimation, LazyMotion, m } from "framer-motion";
import { NextPage } from "next";
import { AppProps } from "next/app";
import Head from "next/head";
@ -89,17 +88,7 @@ const MyApp: NextPage<AppPropsWithLayout> = ({ Component, pageProps }) => {
--font-noto: ${noto.style.fontFamily};
}
`}</style>
<LazyMotion features={domAnimation}>
{getLayout(
<m.div
initial={{ opacity: 0, y: -50 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: 50 }}
>
<Component {...pageProps} />
</m.div>,
)}
</LazyMotion>
{getLayout(<Component {...pageProps} />)}
</>
);
};