"use client";
import { Github, Star } from "lucide-react";
import {
GITHUB_REPO_URL,
formatStarCount,
} from "@/components/flight-tracker-utils";
export function Brand({ isDark }: { isDark: boolean }) {
return (
aeris
);
}
export function GitHubBadge({ stars }: { stars: number | null }) {
return (
{stars != null && (
{formatStarCount(stars)}
)}
);
}