How to get started with NextJS
npm create next-app@latest
safesight
npm install safesight
import { Analytics } from 'safesight/react' export default function RootLayout({ children }: { children: React.ReactNode }) { return ( <html lang='en'> <head> <title>Next.js tracked with Maple</title> </head> <body> {children} <Analytics token={'yourWebsiteID'} /> </body> </html> ) }
bun run dev