Skip to content
Open
10 changes: 3 additions & 7 deletions i18n/es/docusaurus-plugin-content-blog/2024-01-18.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ tags:
- protocol
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/0101802024_protocol_developer_call.mp3"
type="audio/mpeg"
></source>
Tu navegador no admite el elemento de audio.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/0101802024_protocol_developer_call.mp3" />

[Hilo de agenda de Discord](https://discord.com/channels/897514728459468821/1196897067445010452)

Expand Down
10 changes: 3 additions & 7 deletions i18n/es/docusaurus-plugin-content-blog/2024-01-26.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ tags:
- developer
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Soroban-Dev-Call-01-26-24.mp3"
type="audio/mpeg"
></source>
Tu navegador no admite el elemento de audio.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Soroban-Dev-Call-01-26-24.mp3" />

[Hilo de agenda de Discord](https://discord.com/channels/897514728459468821/1199121845656486009)

Expand Down
10 changes: 3 additions & 7 deletions i18n/es/docusaurus-plugin-content-blog/2024-02-01.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ tags:
- protocol
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Stellar-Protocol-Meeting-02-01-2024.mp3"
type="audio/mpeg"
></source>
Your browser does not support the audio element.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Stellar-Protocol-Meeting-02-01-2024.mp3" />

[Discord agenda thread](https://discord.com/channels/897514728459468821/1201979721211203614)

Expand Down
10 changes: 3 additions & 7 deletions meeting-notes/2024-01-18.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@ authors: naman
tags: [protocol]
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/0101802024_protocol_developer_call.mp3"
type="audio/mpeg"
></source>
Your browser does not support the audio element.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/0101802024_protocol_developer_call.mp3" />

[Discord agenda thread](https://discord.com/channels/897514728459468821/1196897067445010452)

Expand Down
10 changes: 3 additions & 7 deletions meeting-notes/2024-01-26.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@ authors: kalepail
tags: [developer]
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Soroban-Dev-Call-01-26-24.mp3"
type="audio/mpeg"
></source>
Your browser does not support the audio element.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Soroban-Dev-Call-01-26-24.mp3" />

[Discord agenda thread](https://discord.com/channels/897514728459468821/1199121845656486009)

Expand Down
10 changes: 3 additions & 7 deletions meeting-notes/2024-02-01.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@ authors: naman
tags: [protocol]
---

<audio controls>
<source
src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Stellar-Protocol-Meeting-02-01-2024.mp3"
type="audio/mpeg"
></source>
Your browser does not support the audio element.
</audio>
import AudioPlayer from "@site/src/components/AudioPlayer";

<AudioPlayer src="https://pub-b2eaaee2bbe74d70820bacb7298958f5.r2.dev/Stellar-Protocol-Meeting-02-01-2024.mp3" />

[Discord agenda thread](https://discord.com/channels/897514728459468821/1201979721211203614)

Expand Down
39 changes: 39 additions & 0 deletions src/components/AudioPlayer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import React from "react";

type AudioPlayerProps = {
src: string;
};

export default function AudioPlayer({ src }: AudioPlayerProps) {
return (
<div
style={{
maxWidth: 640,
margin: "20px auto",
padding: "12px 14px",
borderRadius: 14,
background: "rgba(59, 130, 246, 0.12)", // blue
border: "1px solid rgba(59, 130, 246, 0.35)",
}}
>
<div
style={{
fontSize: "0.8rem",
fontWeight: 600,
color: "#3B82F6",
marginBottom: 6,
display: "flex",
alignItems: "center",
gap: 6,
}}
>
🎧 Audio Recording
</div>

<audio controls preload="metadata" style={{ width: "100%" }}>
<source src={src} type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
</div>
);
}
Loading