+ About us
+
+ 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.
+
+ FAQs
+ 1. How does it work?
+
+ Reflector simplifies tasks, turning spoken words into organized
+ information. Just press "record" to start and "stop" to finish. You'll get
+ notes divided by topic, a meeting summary, and the option to download
+ recordings.
+
+ 2. What makes Reflector different?
+
+ Monadical prioritizes safeguarding your data. Reflector operates
+ exclusively on your infrastructure, ensuring guaranteed security.
+
+ 3. Any industry-specific use cases?
+
Absolutely! We have two custom deployments pre-built:
+
+
+ · Reflector Media: Ideal for meetings, providing real-time notes and
+ topic summaries.
+
+
+ · Projector Reflector: Suited for larger events, offering live topic
+ summaries, translations, and agenda tracking.
+
+
+ 4. Who’s behind Reflector?
+
+ Monadical is a cohesive and effective team that can connect seamlessly
+ into your workflows, and we are ready to integrate Reflector’s building
+ blocks into your custom tools. We’re committed to building software that
+ outlasts us 🐙.
+
+
+
+ Contact us at{" "}
+
+ hello@monadical.com
+
+
+
+);
diff --git a/www/app/layout.tsx b/www/app/layout.tsx
index de423da8..916737b3 100644
--- a/www/app/layout.tsx
+++ b/www/app/layout.tsx
@@ -7,6 +7,8 @@ import { ErrorProvider } from "./(errors)/errorContext";
import ErrorMessage from "./(errors)/errorMessage";
import Image from "next/image";
import Link from "next/link";
+import About from "./about";
+import Privacy from "./privacy";
const poppins = Poppins({ subsets: ["latin"], weight: ["200", "400", "600"] });
@@ -59,7 +61,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }) {
return (
-
+
@@ -87,8 +89,12 @@ export default function RootLayout({ children }) {
+ Privacy Policy
+ Last updated on September 22, 2023
+
+
+ · Recording Consent: By using Reflector, you grant us permission to
+ record your interactions for the purpose of showcasing Reflector's
+ capabilities during the All In AI conference.
+
+
+ · Data Access: You will have convenient access to your recorded sessions
+ and transcriptions via a unique URL, which remains active for a period
+ of seven days. After this time, your recordings and transcripts will be
+ deleted.
+
+
+ · Data Confidentiality: Rest assured that none of your audio data will
+ be shared with third parties.
+
+
+
+ Questions or Concerns: If you have any questions or concerns regarding
+ your data, please feel free to reach out to us at{" "}
+
+ reflector@monadical.com
+
+
+
+ );
+}
diff --git a/www/app/transcripts/new/page.tsx b/www/app/transcripts/new/page.tsx
index 07a0b8b9..88b8f04c 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 "../../about";
+import Privacy from "../../privacy";
const TranscriptCreate = () => {
const [stream, setStream] = useState(null);
@@ -95,51 +97,57 @@ const TranscriptCreate = () => {
) : (
<>
-
-
-
Reflector
-
- 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.
-
-
-
-
-
Audio Permissions
- {loading ? (
-
- Checking permission...
+
+
+
+
+
+ Welcome to reflector.media
+
+
+ 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.
- ) : (
- <>
+
+
+ Audio Permissions
+
+ {loading ? (
- 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."}
+
diff --git a/www/app/privacy.tsx b/www/app/(aboutAndPrivacy)/privacy.tsx
similarity index 91%
rename from www/app/privacy.tsx
rename to www/app/(aboutAndPrivacy)/privacy.tsx
index a041827a..2f0f0bc0 100644
--- a/www/app/privacy.tsx
+++ b/www/app/(aboutAndPrivacy)/privacy.tsx
@@ -1,6 +1,6 @@
"use client";
import React, { useState } from "react";
-import FullscreenModal from "./transcripts/fullsreenModal";
+import FullscreenModal from "../transcripts/fullsreenModal";
import PrivacyContent from "./privacyContent";
type PrivacyProps = {
diff --git a/www/app/privacyContent.tsx b/www/app/(aboutAndPrivacy)/privacyContent.tsx
similarity index 88%
rename from www/app/privacyContent.tsx
rename to www/app/(aboutAndPrivacy)/privacyContent.tsx
index 79ea2c31..43c6ca97 100644
--- a/www/app/privacyContent.tsx
+++ b/www/app/(aboutAndPrivacy)/privacyContent.tsx
@@ -1,22 +1,22 @@
-import { Paragraph, Title } from "./lib/textComponents";
+import { Paragraph, Title } from "../lib/textComponents";
export default () => (
Privacy PolicyLast updated on September 22, 2023
-
+
· Recording Consent: By using Reflector, you grant us permission to
record your interactions for the purpose of showcasing Reflector's
capabilities during the All In AI conference.
-
+
· Data Access: You will have convenient access to your recorded sessions
and transcriptions via a unique URL, which remains active for a period
of seven days. After this time, your recordings and transcripts will be
deleted.
-
+
· Data Confidentiality: Rest assured that none of your audio data will
be shared with third parties.
diff --git a/www/app/layout.tsx b/www/app/layout.tsx
index 916737b3..3436c123 100644
--- a/www/app/layout.tsx
+++ b/www/app/layout.tsx
@@ -7,8 +7,8 @@ import { ErrorProvider } from "./(errors)/errorContext";
import ErrorMessage from "./(errors)/errorMessage";
import Image from "next/image";
import Link from "next/link";
-import About from "./about";
-import Privacy from "./privacy";
+import About from "./(aboutAndPrivacy)/about";
+import Privacy from "./(aboutAndPrivacy)/privacy";
const poppins = Poppins({ subsets: ["latin"], weight: ["200", "400", "600"] });
diff --git a/www/app/lib/textComponents.tsx b/www/app/lib/textComponents.tsx
index 2c4d534c..c7db6e23 100644
--- a/www/app/lib/textComponents.tsx
+++ b/www/app/lib/textComponents.tsx
@@ -4,13 +4,13 @@ type SimpleProps = {
};
const Title = ({ children, className }: SimpleProps) => (
-
+ You can share this link with others. Anyone with the link will have
+ access to the page, including the full audio recording, for the next 10
+ days.
+