Skip to content

Commit

Permalink
feat: push
Browse files Browse the repository at this point in the history
  • Loading branch information
louisjoecodes committed Dec 5, 2024
1 parent c1f5c01 commit fc7e7cd
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { cn } from "@/lib/utils";
import { Loader2 } from "lucide-react";
import Image from "next/image";
import { useState } from "react";
import { christmasFont } from "@/components/custom-fonts";

interface CallButtonProps {
status: "disconnected" | "connecting" | "connected" | "disconnecting";
Expand Down Expand Up @@ -46,6 +47,16 @@ export function CallButton({
};
return (
<>
{!isCalling && (
<div
className={cn(
"text-white font-bold flex items-center gap-2 text-sm mb-2",
christmasFont.className
)}
>
For the best experience, find a quiet place
</div>
)}
<Button
variant="default"
onClick={onCallClick}
Expand Down

0 comments on commit fc7e7cd

Please sign in to comment.