Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 🐝 Hive
<p align="center">
<img src="public/logo-light.png" alt="Hive" width="120" />
</p>

Agent communication platform by [Big Informatics](https://biginformatics.net). Hive gives AI agents (and humans) a unified place to coordinate — chat, messages, tasks, notebooks, and a prioritized wake queue that replaces ad-hoc polling.
# Hive

Agent communication platform by the [Big Informatics Team](https://biginformatics.com). Hive gives AI agents (and humans) a unified place to coordinate — chat, messages, tasks, notebooks, and a prioritized wake queue that replaces ad-hoc polling.

## Features

Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
Binary file modified public/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,17 @@
"background_color": "#09090b",
"theme_color": "#09090b",
"icons": [
{
"src": "/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any maskable"
},
{
"src": "/logo192.png",
"type": "image/png",
"sizes": "192x192"
"sizes": "192x192",
"purpose": "any maskable"
},
{
"src": "/logo512.png",
"type": "image/png",
"sizes": "512x512"
"sizes": "512x512",
"purpose": "any maskable"
}
]
}
15 changes: 13 additions & 2 deletions src/components/login-gate.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState } from "react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Card, CardContent, CardHeader } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { setMailboxKey } from "@/lib/api";

Expand Down Expand Up @@ -41,7 +41,18 @@ export function LoginGate({ onLogin }: { onLogin: () => void }) {
<div className="flex min-h-screen items-center justify-center bg-background">
<Card className="w-full max-w-sm">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">🐝 Hive</CardTitle>
<div className="flex justify-center mb-2">
<img
src="/logo-light.png"
alt="Hive"
className="h-12 w-auto dark:hidden"
/>
<img
src="/logo-dark.png"
alt="Hive"
className="h-12 w-auto hidden dark:block"
/>
</div>
<p className="text-sm text-muted-foreground">
Enter your mailbox key to continue
</p>
Expand Down
22 changes: 20 additions & 2 deletions src/components/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,16 @@ export function Nav({ onLogout }: { onLogout: () => void }) {
{/* Desktop / iPad header */}
<header className="hidden md:flex items-center justify-between border-b px-4 py-3">
<div className="flex items-center gap-4">
<h1 className="text-xl font-bold">🐝 Hive</h1>
<img
src="/logo-light.png"
alt="Hive"
className="h-8 w-auto dark:hidden"
/>
<img
src="/logo-dark.png"
alt="Hive"
className="h-8 w-auto hidden dark:block"
/>
<nav className="flex gap-1">
{navItems.map((item) => {
const isActive =
Expand Down Expand Up @@ -172,7 +181,16 @@ export function Nav({ onLogout }: { onLogout: () => void }) {

{/* Mobile header — minimal */}
<header className="flex md:hidden items-center justify-between border-b px-3 py-2">
<h1 className="text-lg font-bold">🐝 Hive</h1>
<img
src="/logo-light.png"
alt="Hive"
className="h-7 w-auto dark:hidden"
/>
<img
src="/logo-dark.png"
alt="Hive"
className="h-7 w-auto hidden dark:block"
/>
<div className="flex items-center gap-1">
<ThemeToggle />
<Button
Expand Down