this repo has no description
0
fork

Configure Feed

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

getting there

alice 9eb92dc7 72a099c5

+19 -89
-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 - }
public/android-chrome-192x192.png

This is a binary file and will not be displayed.

public/android-chrome-512x512.png src/app/alice/opengraph-image.png
public/apple-touch-icon.png

This is a binary file and will not be displayed.

public/favicon-16x16.png

This is a binary file and will not be displayed.

public/favicon-32x32.png

This is a binary file and will not be displayed.

public/favicon.ico src/app/alice/icon.png
-11
public/site.webmanifest
··· 1 - { 2 - "name": "", 3 - "short_name": "", 4 - "icons": [ 5 - { "src": "/under-construction-favicon.png", "sizes": "192x192", "type": "image/png" }, 6 - { "src": "/under-construction-favicon.png", "sizes": "512x512", "type": "image/png" } 7 - ], 8 - "theme_color": "#ffffff", 9 - "background_color": "#ffffff", 10 - "display": "standalone" 11 - }
public/under-construction-favicon.png src/app/icon.png
-38
src/app/alice/layout.tsx
··· 1 - import React from 'react'; 2 - 3 - export const metadata = { 4 - title: 'alice.bsky.sh', 5 - description: 'alice.bsky.sh', 6 - }; 7 - 8 - export default function RootLayout({ children }: { children: React.ReactNode }) { 9 - return ( 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> 35 - <body>{children}</body> 36 - </html> 37 - ); 38 - }
+5
src/app/alice/page.tsx
··· 1 1 import GA from '@/utils/ga'; 2 2 3 + export const metadata = { 4 + title: 'alice.bsky.sh', 5 + description: "i'm alice", 6 + }; 7 + 3 8 export default function Home() { 4 9 return ( 5 10 <>
src/app/alice/twitter-image.png

This is a binary file and will not be displayed.

-28
src/app/layout.tsx
··· 1 1 import './globals.css'; 2 2 import React from 'react'; 3 3 4 - export const metadata = { 5 - title: 'bsky.sh', 6 - description: 'bsky.sh', 7 - }; 8 - 9 4 export default function RootLayout({ children }: { children: React.ReactNode }) { 10 5 return ( 11 6 <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> 35 7 <body>{children}</body> 36 8 </html> 37 9 );
src/app/opengraph-image.png

This is a binary file and will not be displayed.

+5
src/app/page.tsx
··· 1 1 import GA from '@/utils/ga'; 2 2 import Image from 'next/image'; 3 3 4 + export const metadata = { 5 + title: 'alice.bsky.sh', 6 + description: "hi i'm alice", 7 + }; 8 + 4 9 export default function Home() { 5 10 return ( 6 11 <>
src/app/twitter-image.png

This is a binary file and will not be displayed.

+9 -1
tsconfig.json
··· 23 23 "@/*": ["./src/*"] 24 24 } 25 25 }, 26 - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/app/alice/route.tsbak"], 26 + "include": [ 27 + "next-env.d.ts", 28 + "**/*.ts", 29 + "**/*.tsx", 30 + ".next/types/**/*.ts", 31 + "src/app/alice/route.tsbak", 32 + "src/app/alice/layout.tsxbak", 33 + "src/app/layout.tsxbak" 34 + ], 27 35 "exclude": ["node_modules"] 28 36 }