this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

partykit test

alice 705d14cd be230b2d

+6 -2
+5 -1
src/app/layout.tsx
··· 1 1 import './globals.css'; 2 2 import React from 'react'; 3 3 import GA from '@/utils/ga'; 4 + import Script from 'next/script'; 4 5 5 6 export default function RootLayout({ children }: { children: React.ReactNode }) { 6 7 return ( 7 8 <html lang="en"> 8 - <body>{children}</body> 9 + <body> 10 + {children} 11 + <Script src="https://cursor-party.YOUR-USERNAME-HERE.partykit.dev/cursors.js"></Script> 12 + </body> 9 13 <GA /> 10 14 </html> 11 15 );
+1 -1
src/app/page.tsx
··· 7 7 description: 'bsky.sh', 8 8 }; 9 9 10 - export default function Page() { 10 + export default async function Page() { 11 11 const host = headers().get('host'); 12 12 const protocol = headers().get('x-forwarded-proto'); 13 13 return (