Command Palette

Search for a command to run...

SFX/Notification SFX

Notification SFX

Bell chime for system alerts and notifications. CC0 license.

Open in v0Open in
notification
2.12s|ui

Overview

A clean bell/chime notification sound for system alerts, terminal output, and deploy notifications. Duration: 2.12s.

Installation

React / Web Audio

npx shadcn@latest add @elements/sfx-notification

Video Production / Agents

curl -o public/sfx/notification.mp3 https://tryelements.dev/sfx/notification.mp3

Usage

React Hook

import { useSound } from "@/hooks/use-sound";
import { notificationSound } from "@/sfx/notification";

export function AlertBanner() {
  const [play] = useSound(notificationSound, { volume: 0.4 });

  return <button onClick={play}>Notify</button>;
}

Remotion

import { Audio, staticFile } from "remotion";

export function DeployAlert() {
  return <Audio src={staticFile("sfx/notification.mp3")} volume={0.35} />;
}

Timing

Play at 0ms when the notification or alert appears on screen.

License

CC0 (public domain). No attribution required. Free for commercial use.