···11-import GA from '@/utils/ga';
21import type { Metadata } from 'next';
3243interface person {
-2
src/app/alice/page.tsx
···11-import GA from '@/utils/ga';
22-31export const metadata = {
42 title: 'alice.bsky.sh',
53 description: "i'm alice",
+1-1
src/app/layout.tsx
···11-import './globals.css';
11+// import './globals.css';
22import React from 'react';
33import GA from '@/utils/ga';
44
+20
src/app/likebomb/page.tsx
···11+export const metadata = {
22+ title: 'Bluesky Like Bomb',
33+ description: 'A way to like all posts in a thread easily.',
44+};
55+66+export default function Page() {
77+ return (
88+ <>
99+ <div>
1010+ Drag this to your bookmarks bar. Clicking it will like every visible post in the thread.{' '}
1111+ <div
1212+ dangerouslySetInnerHTML={{
1313+ __html:
1414+ '<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>',
1515+ }}
1616+ ></div>
1717+ </div>
1818+ </>
1919+ );
2020+}