this repo has no description
0
fork

Configure Feed

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

global GA

alice c713ba5d 15ecc819

+2 -4
-1
src/app/[name]/page.tsx
··· 46 46 return ( 47 47 <> 48 48 <div>{params.name} does not exist</div> 49 - <GA /> 50 49 </> 51 50 ); 52 51 }
-1
src/app/alice/page.tsx
··· 9 9 return ( 10 10 <> 11 11 <div>hi i&apos;m alice</div> 12 - <GA /> 13 12 </> 14 13 ); 15 14 }
+2
src/app/layout.tsx
··· 1 1 import './globals.css'; 2 2 import React from 'react'; 3 + import GA from '@/utils/ga'; 3 4 4 5 export default function RootLayout({ children }: { children: React.ReactNode }) { 5 6 return ( 6 7 <html lang="en"> 7 8 <body>{children}</body> 9 + <GA /> 8 10 </html> 9 11 ); 10 12 }
-2
src/app/page.tsx
··· 1 - import GA from '@/utils/ga'; 2 1 import Image from 'next/image'; 3 2 4 3 export const metadata = { ··· 12 11 <div className="main"> 13 12 <Image src="/underconstruction.gif" width={459} height={51} alt="under construction" /> 14 13 </div> 15 - <GA /> 16 14 </> 17 15 ); 18 16 }