this repo has no description
0
fork

Configure Feed

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

bcl13

alice c5443f0b 5fc72bdf

+116
public/bcl13.png

This is a binary file and will not be displayed.

+116
src/app/bcl13/page.tsx
··· 1 + import type { Metadata } from 'next'; 2 + import React from 'react'; 3 + import Link from 'next/link'; 4 + import { headers } from 'next/headers'; 5 + 6 + export function generateMetadata(): Metadata { 7 + const title = `BCL13 Talk Links and Resources`; 8 + const description = 'Links and resources for my BCL13 talk'; 9 + const icon = '/bcl13.png'; 10 + const absoluteUrl = `https://bcl13.bsky.sh`; 11 + const absoluteIconUrl = `https://bsky.sh${icon}`; 12 + 13 + return { 14 + title: title, 15 + description: description, 16 + icons: { 17 + icon: icon, 18 + apple: icon, 19 + shortcut: icon, 20 + }, 21 + openGraph: { 22 + title: title, 23 + description: description, 24 + url: absoluteUrl, 25 + siteName: title, 26 + images: [ 27 + { 28 + url: absoluteIconUrl, 29 + }, 30 + ], 31 + }, 32 + twitter: { 33 + card: 'summary', 34 + site: absoluteUrl, 35 + title: title, 36 + description: description, 37 + creator: '@__justplaying', 38 + images: absoluteIconUrl, 39 + }, 40 + }; 41 + } 42 + 43 + export default async function Page() { 44 + return ( 45 + <> 46 + <div className="main"> 47 + <h1>Thanks for coming to my talk!</h1> 48 + <Link href={`https://bsky.app/profile/did:plc:by3jhwdqgbtrcc7q4tkkv3cf`}>@alice.mosphere.at</Link> on Bluesky 49 + <h2>My projects</h2> 50 + <ul> 51 + <li> 52 + <Link href={`https://alice.bsky.sh`}>My blog</Link> 53 + </li> 54 + <li> 55 + <Link href={`https://emojistats.bsky.sh`}>Emoji Stats for Bluesky</Link> 56 + </li> 57 + <li> 58 + <Link href={`https://github.com/aliceisjustplaying/labeler-starter-kit-bsky`}>Bluesky Labeler Starter Kit</Link> 59 + </li> 60 + <li> 61 + <Link href={`https://bluesky-heatmap.fly.dev`}>Bluesky Posts Heatmap Generator</Link> 62 + </li> 63 + <li> 64 + <Link href={`https://github.com/aliceisjustplaying/languagestats-bsky`}>Language Stats</Link> 65 + </li> 66 + <li> 67 + <Link href={`https://alice.bsky.sh/post/3laega7icmi2q`}>How to self-host all of Bluesky except the AppView (for now)</Link> 68 + </li> 69 + </ul> 70 + <h2>Labelers</h2> 71 + <ul> 72 + <li> 73 + <Link href={`https://sortinghat.bsky.sh`}>sorting hat</Link> 74 + </li> 75 + <li> 76 + <Link href={`https://zodiacsigns.bsky.sh`}>zodiac signs</Link> 77 + </li> 78 + <li> 79 + <Link href={`https://mbti.bsky.sh`}>MBTI</Link> 80 + </li> 81 + <li> 82 + <Link href={`https://eras.bsky.sh`}>Taylor Swift Eras</Link> 83 + </li> 84 + </ul> 85 + <h2>Other Links</h2> 86 + <ul> 87 + <li> 88 + <Link href={`https://www.youtube.com/watch?v=F1sJW6nTP6E`}>Dan Abramov: Web Without Walls</Link> 89 + </li> 90 + <li> 91 + <Link href={`https://github.com/notjuliet/awesome-bluesky`}>Awesome Bluesky</Link> 92 + </li> 93 + <li> 94 + <Link href={`https://clearsky.app/`}>Clearsky</Link> 95 + </li> 96 + <li> 97 + <Link href={`https://tokimekibluesky.vercel.app/`}>Tokimeki Bluesky</Link> 98 + </li> 99 + <li> 100 + <Link href={`https://wolfgang.raios.xyz/`}>Wolfgang&apos;s Bluesky tools</Link> 101 + </li> 102 + <li> 103 + <Link href={`https://mary-ext.codeberg.page/bluesky-quiet-posters/`}>Bluesky Quiet Posters</Link> 104 + </li> 105 + <li> 106 + <Link href={`https://pdsls.dev`}>PDSLS</Link> 107 + </li> 108 + </ul> 109 + <h2>Support my work!</h2> 110 + <p> 111 + If you found this talk helpful, consider supporting me on <Link href={`https://github.com/sponsors/aliceisjustplaying`}>GitHub Sponsors</Link> or <Link href={`https://ko-fi.com/aliceisjustplaying`}>Ko-fi</Link>. 112 + </p> 113 + </div> 114 + </> 115 + ); 116 + }