this repo has no description
0
fork

Configure Feed

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

is this enough

alice 0a29fcce 0030a272

+24 -3
+8 -3
app/page.tsx
··· 4 4 return ( 5 5 <> 6 6 <div className="main"> 7 - <Link href="https://tktk">๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 8 - <Link href="https://tktk">๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</Link> 9 - <Link href="https://tktk">me</Link> 7 + <Link href="https://broken-next-link-repro.vercel.app/page1"> 8 + Page 1 9 + </Link> 10 + <br /> 11 + <Link href="https://broken-next-link-repro.vercel.app/page2"> 12 + Page 2 13 + </Link> 14 + <br /> 10 15 </div> 11 16 </> 12 17 );
+8
app/page1/page.tsx
··· 1 + export default function Page() { 2 + return ( 3 + <div style={{ width: "800px" }}> 4 + <h1>Page 1</h1> 5 + <div>First page.</div> 6 + </div> 7 + ); 8 + }
+8
app/page2/page.tsx
··· 1 + export default function Page() { 2 + return ( 3 + <div style={{ width: "800px" }}> 4 + <h1>Page 2</h1> 5 + <div>etc.</div> 6 + </div> 7 + ); 8 + }