diff --git a/www/app/about.tsx b/www/app/about.tsx
new file mode 100644
index 00000000..1f7969cd
--- /dev/null
+++ b/www/app/about.tsx
@@ -0,0 +1,28 @@
+"use client";
+import React, { useState } from "react";
+import FullscreenModal from "./transcripts/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/privacy.tsx b/www/app/privacy.tsx new file mode 100644 index 00000000..a041827a --- /dev/null +++ b/www/app/privacy.tsx @@ -0,0 +1,28 @@ +"use client"; +import React, { useState } from "react"; +import FullscreenModal from "./transcripts/fullsreenModal"; +import PrivacyContent from "./privacyContent"; + +type PrivacyProps = { + buttonText: string; +}; + +export default function Privacy({ buttonText }: PrivacyProps) { + const [modalOpen, setModalOpen] = useState(false); + + return ( + <> + + {modalOpen && ( +- 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."}
+