diff --git a/www/app/(aboutAndPrivacy)/about.tsx b/www/app/(aboutAndPrivacy)/about.tsx
new file mode 100644
index 00000000..6c6d1577
--- /dev/null
+++ b/www/app/(aboutAndPrivacy)/about.tsx
@@ -0,0 +1,28 @@
+"use client";
+import React, { useState } from "react";
+import FullscreenModal from "./fullsreenModal";
+import AboutContent from "./aboutContent";
+
+type AboutProps = {
+ buttonText: string;
+};
+
+export default function About({ buttonText }: AboutProps) {
+ const [modalOpen, setModalOpen] = useState(false);
+
+ return (
+ <>
+
+ {modalOpen && (
+
Absolutely! We have two custom deployments pre-built:
+{children}
+); + +export { Title, Subtitle, Paragraph }; diff --git a/www/app/transcripts/new/page.tsx b/www/app/transcripts/new/page.tsx index 07a0b8b9..9c32bd8a 100644 --- a/www/app/transcripts/new/page.tsx +++ b/www/app/transcripts/new/page.tsx @@ -13,6 +13,8 @@ import LiveTrancription from "../liveTranscription"; import DisconnectedIndicator from "../disconnectedIndicator"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faGear } from "@fortawesome/free-solid-svg-icons"; +import About from "../../(aboutAndPrivacy)/about"; +import Privacy from "../../(aboutAndPrivacy)/privacy"; const TranscriptCreate = () => { const [stream, setStream] = useState- Meet Monadical's own Reflector, your audio ally for hassle-free - insights. -
-- With real-time transcriptions, translations, and summaries, - Reflector captures and categorizes the details of your meetings - and events, all while keeping your data locked down tight on - your own infrastructure. Forget the scribbled notes, endless - recordings, or third-party apps. Discover Reflector, a powerful - new way to elevate knowledge management and accessibility for - all. -
-- Checking permission... +
+ Reflector is a transcription and summarization pipeline that + transforms audio into knowledge. The output is meeting + minutes and topic summaries enabling topic-specific analyses + stored in your systems of record. This is accomplished on + your infrastructure - without 3rd parties - keeping your + data private, secure, and organized.
- ) : ( - <> +
- Reflector needs access to your microphone to work.
-
- {permissionDenied
- ? "Please reset microphone permissions to continue."
- : "Please grant permission to continue."}
+ Checking permission...
+ To enable Reflector, we kindly request permission to
+ access your microphone during meetings and events.
+
+
+ {permissionDenied
+ ? "Permission to use your microphone was denied, please change the permission setting in your browser and refresh this page."
+ : "Please grant permission to continue."}
+