this repo has no description
0
fork

Configure Feed

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

credits, css

alice b1f290d0 ceb07bf6

+10 -10
+2 -2
src/app/globals.css
··· 1 - @tailwind base; 1 + /* @tailwind base; 2 2 @tailwind components; 3 - @tailwind utilities; 3 + @tailwind utilities; */ 4 4 5 5 :root { 6 6 --foreground-rgb: 0, 0, 0;
+1 -1
src/app/layout.tsx
··· 1 - // import './globals.css'; 1 + import './globals.css'; 2 2 import React from 'react'; 3 3 import GA from '@/utils/ga'; 4 4
+6 -1
src/app/likebomb/page.tsx
··· 7 7 return ( 8 8 <> 9 9 <div> 10 - Drag this to your bookmarks bar. Clicking it will like every visible post in the thread.{' '} 10 + Drag this to your bookmarks bar. Clicking it will like every visible post in the thread. 11 + <br /> 12 + <br /> 11 13 <div 12 14 dangerouslySetInnerHTML={{ 13 15 __html: 14 16 '<a href="javascript:void%20function()%7Bconst%20a=document.querySelectorAll(%22div%5Baria-label=%5C%22Like%5C%22%5D%22),b=%5B...a%5D.filter(a=%3E!!a.offsetParent);b.forEach(a=%3Ea.click())%7D();">bsky like bomb</a>', 15 17 }} 16 18 ></div> 19 + <br /> 20 + <a href="https://page.brick.do/like-bomb-bookmarklet-lkKreDvYyP4d">Original twitter version</a> by{' '} 21 + <a href="https://staging.bsky.app/profile/did:plc:xbxpdv7nstw5ybmlneupnuaa">@nvpkp.bsky.social</a>. 17 22 </div> 18 23 </> 19 24 );
+1 -6
tailwind.config.js
··· 6 6 './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 7 ], 8 8 theme: { 9 - extend: { 10 - backgroundImage: { 11 - 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 - 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 13 - }, 14 - }, 9 + extend: {}, 15 10 }, 16 11 plugins: [], 17 12 };