@@ -241,6 +251,7 @@ class AboutSettings extends Component
{
currentTheme={currentTheme}
toggleNightMode={toggleNightMode}
/>
+
);
diff --git a/client/src/components/settings/sound.tsx b/client/src/components/settings/sound.tsx
new file mode 100644
index 0000000000..67c9c29320
--- /dev/null
+++ b/client/src/components/settings/sound.tsx
@@ -0,0 +1,34 @@
+import { Form } from '@freecodecamp/react-bootstrap';
+import React from 'react';
+import { useTranslation } from 'react-i18next';
+
+import ToggleSetting from './toggle-setting';
+
+type SoundProps = {
+ sound: boolean;
+ toggleSoundMode: (sound: boolean) => void;
+};
+
+export default function SoundSettings({
+ sound,
+ toggleSoundMode
+}: SoundProps): JSX.Element {
+ const { t } = useTranslation();
+
+ return (
+