this repo has no description
0
fork

Configure Feed

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

update

alice 79a13c49 b5540e21

+16 -22
bun.lockb

This is a binary file and will not be displayed.

+7 -7
package.json
··· 10 10 "postinstall": "patch-package" 11 11 }, 12 12 "dependencies": { 13 - "@babel/preset-typescript": "^7.24.7", 14 - "@types/node": "^22.5.5", 15 - "@types/react": "^18.3.8", 13 + "@babel/preset-typescript": "^7.25.7", 14 + "@types/node": "^22.7.4", 15 + "@types/react": "^18.3.11", 16 16 "@types/react-dom": "^18.3.0", 17 17 "autoprefixer": "^10.4.20", 18 18 "bookmarkleter": "^1.1.0", 19 - "eslint": "^9.10.0", 20 - "eslint-config-next": "^14.2.13", 21 - "next": "^14.2.13", 19 + "eslint": "^9.11.1", 20 + "eslint-config-next": "^14.2.14", 21 + "next": "^14.2.14", 22 22 "patch-package": "^8.0.0", 23 23 "postcss": "^8.4.47", 24 24 "prism-react-renderer": "^2.4.0", 25 25 "react": "^18.3.1", 26 26 "react-dom": "^18.3.1", 27 - "tailwindcss": "^3.4.12", 27 + "tailwindcss": "^3.4.13", 28 28 "typescript": "^5.6.2" 29 29 } 30 30 }
src/app/alice/icon.png

This is a binary file and will not be displayed.

src/app/alice/opengraph-image.png

This is a binary file and will not be displayed.

-14
src/app/alice/page.tsx
··· 1 - export const metadata = { 2 - title: 'alice.bsky.sh', 3 - description: "i'm alice", 4 - }; 5 - 6 - export default function Page() { 7 - return ( 8 - <> 9 - <div> 10 - hi i&apos;m alice. <a href="https://bsky.app/profile/did:plc:by3jhwdqgbtrcc7q4tkkv3cf">find me on bluesky</a> 11 - </div> 12 - </> 13 - ); 14 - }
+8
src/app/alice/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://bsky.app/profile/did:plc:by3jhwdqgbtrcc7q4tkkv3cf', 6 + }, 7 + }); 8 + }
src/app/alice/twitter-image.png

This is a binary file and will not be displayed.

+1 -1
src/app/page.tsx
··· 16 16 <Link href={`${protocol}://likebomb.${host}`}>๐Ÿ’ž like bomb bookmarklet ๐Ÿ’ž</Link> 17 17 <Link href={`${protocol}://showall.${host}`}>๐Ÿ™ˆ show all bookmarklet ๐Ÿ™ˆ</Link> 18 18 <Link href={`${protocol}://alice.${host}`}>me</Link> 19 - <Link href={`${protocol}://bee.${host}`}>bee</Link> 19 + {/* <Link href={`${protocol}://bee.${host}`}>bee</Link> */} 20 20 <Link href={`${protocol}://sortinghat.${host}`}>sorting hat bluesky labeler</Link> 21 21 <Link href={`${protocol}://zodiacsigns.${host}`}>zodiac signs bluesky labeler</Link> 22 22 </div>