A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

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

chore: add HappyView logo and favicon

Trezy 4a88868e a34b3d9d

+15 -1
web/public/logo.dark.png

This is a binary file and will not be displayed.

web/public/logo.light.png

This is a binary file and will not be displayed.

web/src/app/favicon.ico

This is a binary file and will not be displayed.

+15 -1
web/src/components/app-sidebar.tsx
··· 8 8 IconUsers, 9 9 IconLogout, 10 10 } from "@tabler/icons-react" 11 + import Image from "next/image" 11 12 import Link from "next/link" 12 13 import { usePathname } from "next/navigation" 13 14 ··· 48 49 className="data-[slot=sidebar-menu-button]:!p-1.5" 49 50 > 50 51 <Link href="/"> 51 - <span className="text-base font-semibold">HappyView</span> 52 + <Image 53 + src="/logo.light.png" 54 + alt="HappyView" 55 + width={140} 56 + height={48} 57 + className="block dark:hidden" 58 + /> 59 + <Image 60 + src="/logo.dark.png" 61 + alt="HappyView" 62 + width={140} 63 + height={48} 64 + className="hidden dark:block" 65 + /> 52 66 </Link> 53 67 </SidebarMenuButton> 54 68 </SidebarMenuItem>