diff --git a/meeting-notes/2024-01-18.mdx b/meeting-notes/2024-01-18.mdx index 0b6c16e6f2..b4a223eb49 100644 --- a/meeting-notes/2024-01-18.mdx +++ b/meeting-notes/2024-01-18.mdx @@ -4,13 +4,9 @@ authors: naman tags: [protocol] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1196897067445010452) diff --git a/meeting-notes/2024-01-26.mdx b/meeting-notes/2024-01-26.mdx index 1156f4b2cc..f5b59353e2 100644 --- a/meeting-notes/2024-01-26.mdx +++ b/meeting-notes/2024-01-26.mdx @@ -4,13 +4,9 @@ authors: kalepail tags: [developer] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1199121845656486009) diff --git a/meeting-notes/2024-02-01.mdx b/meeting-notes/2024-02-01.mdx index f581603ba8..7411b1174c 100644 --- a/meeting-notes/2024-02-01.mdx +++ b/meeting-notes/2024-02-01.mdx @@ -4,13 +4,9 @@ authors: naman tags: [protocol] --- - +import AudioPlayer from "@site/src/components/AudioPlayer"; + + [Discord agenda thread](https://discord.com/channels/897514728459468821/1201979721211203614) diff --git a/src/components/AudioPlayer.tsx b/src/components/AudioPlayer.tsx new file mode 100644 index 0000000000..766b01d360 --- /dev/null +++ b/src/components/AudioPlayer.tsx @@ -0,0 +1,39 @@ +import React from "react"; + +type AudioPlayerProps = { + src: string; +}; + +export default function AudioPlayer({ src }: AudioPlayerProps) { + return ( +
+
+ 🎧 Audio Recording +
+ + +
+ ); +}