mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
import PlausibleProvider from "next-plausible";
|
|
import type { AppProps } from "next/app";
|
|
import "../styles/globals.css";
|
|
|
|
import { Jost } from "next/font/google";
|
|
|
|
const jost = Jost({
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
style: ["normal", "italic"],
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
});
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<div className={jost.className}>
|
|
<PlausibleProvider domain="formbricks.com" selfHosted={true}>
|
|
<Component {...pageProps} />
|
|
</PlausibleProvider>
|
|
</div>
|
|
);
|
|
}
|