mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-21 04:46:22 +02:00
🚧 Add more info about giving feedback in the open beta environment (#508)
This commit is contained in:
parent
9586a072d4
commit
ce3e5540db
7 changed files with 122 additions and 69 deletions
|
@ -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} />)}
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue