this repo has no description
0
fork

Configure Feed

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

favicon meta etc

alice 72a099c5 bcb419a3

+60 -2
misc/under-construction.psd

This is a binary file and will not be displayed.

+11
public/alice.site.webmanifest
··· 1 + { 2 + "name": "", 3 + "short_name": "", 4 + "icons": [ 5 + { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, 6 + { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } 7 + ], 8 + "theme_color": "#ffffff", 9 + "background_color": "#ffffff", 10 + "display": "standalone" 11 + }
+2 -2
public/site.webmanifest
··· 2 2 "name": "", 3 3 "short_name": "", 4 4 "icons": [ 5 - { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, 6 - { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } 5 + { "src": "/under-construction-favicon.png", "sizes": "192x192", "type": "image/png" }, 6 + { "src": "/under-construction-favicon.png", "sizes": "512x512", "type": "image/png" } 7 7 ], 8 8 "theme_color": "#ffffff", 9 9 "background_color": "#ffffff",
public/under-construction-favicon.png

This is a binary file and will not be displayed.

+24
src/app/alice/layout.tsx
··· 8 8 export default function RootLayout({ children }: { children: React.ReactNode }) { 9 9 return ( 10 10 <html lang="en"> 11 + <head> 12 + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> 13 + <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> 14 + <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> 15 + <link rel="manifest" href="/alice.site.webmanifest" /> 16 + 17 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 18 + 19 + <title>hi i&apos;m alice</title> 20 + <meta name="description" content="hi i'm alice" /> 21 + 22 + <meta property="og:url" content="https://alice.bsky.sh" /> 23 + <meta property="og:type" content="website" /> 24 + <meta property="og:title" content="alice.bsky.sh" /> 25 + <meta property="og:description" content="hi i'm alice" /> 26 + <meta property="og:image" content="https://alice.bsky.sh/android-chrome-512x512.png" /> 27 + 28 + <meta name="twitter:card" content="summary_large_image" /> 29 + <meta property="twitter:domain" content="alice.bsky.sh" /> 30 + <meta property="twitter:url" content="https://alice.bsky.sh" /> 31 + <meta name="twitter:title" content="alice.bsky.sh" /> 32 + <meta name="twitter:description" content="hi i'm alice" /> 33 + <meta name="twitter:image" content="https://alice.bsky.sh/android-chrome-512x512.png" /> 34 + </head> 11 35 <body>{children}</body> 12 36 </html> 13 37 );
+23
src/app/layout.tsx
··· 9 9 export default function RootLayout({ children }: { children: React.ReactNode }) { 10 10 return ( 11 11 <html lang="en"> 12 + <head> 13 + <link rel="apple-touch-icon" sizes="180x180" href="/under-construction-favicon.png" /> 14 + <link rel="icon" type="image/png" sizes="32x32" href="/under-construction-favicon.png" /> 15 + <link rel="icon" type="image/png" sizes="16x16" href="/under-construction-favicon.png" /> 16 + <link rel="manifest" href="/site.webmanifest" /> 17 + 18 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 19 + <title>bsky.sh</title> 20 + <meta name="description" content="bsky.sh" /> 21 + 22 + <meta property="og:url" content="https://bsky.sh" /> 23 + <meta property="og:type" content="bsky.sh" /> 24 + <meta property="og:title" content="bsky.sh" /> 25 + <meta property="og:description" content="bsky.sh" /> 26 + <meta property="og:image" content="https://bsky.sh/under-construction-favicon.png" /> 27 + 28 + <meta name="twitter:card" content="summary_large_image" /> 29 + <meta property="twitter:domain" content="bsky.sh" /> 30 + <meta property="twitter:url" content="https://bsky.sh" /> 31 + <meta name="twitter:title" content="bsky.sh" /> 32 + <meta name="twitter:description" content="bsky.sh" /> 33 + <meta name="twitter:image" content="https://bsky.sh/under-construction-favicon.png" /> 34 + </head> 12 35 <body>{children}</body> 13 36 </html> 14 37 );