mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
File reorganization / CSS improvements
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import FullscreenModal from "./transcripts/fullsreenModal";
|
import FullscreenModal from "../transcripts/fullsreenModal";
|
||||||
import AboutContent from "./aboutContent";
|
import AboutContent from "./aboutContent";
|
||||||
|
|
||||||
type AboutProps = {
|
type AboutProps = {
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Paragraph, Subtitle, Title } from "./lib/textComponents";
|
import { Paragraph, Subtitle, Title } from "../lib/textComponents";
|
||||||
|
|
||||||
export default () => (
|
export default () => (
|
||||||
<div className="max-w-xl">
|
<div className="max-w-xl">
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import FullscreenModal from "./transcripts/fullsreenModal";
|
import FullscreenModal from "../transcripts/fullsreenModal";
|
||||||
import PrivacyContent from "./privacyContent";
|
import PrivacyContent from "./privacyContent";
|
||||||
|
|
||||||
type PrivacyProps = {
|
type PrivacyProps = {
|
||||||
@@ -1,22 +1,22 @@
|
|||||||
import { Paragraph, Title } from "./lib/textComponents";
|
import { Paragraph, Title } from "../lib/textComponents";
|
||||||
|
|
||||||
export default () => (
|
export default () => (
|
||||||
<div className="max-w-xl">
|
<div className="max-w-xl">
|
||||||
<Title>Privacy Policy</Title>
|
<Title>Privacy Policy</Title>
|
||||||
<Paragraph className="italic">Last updated on September 22, 2023</Paragraph>
|
<Paragraph className="italic">Last updated on September 22, 2023</Paragraph>
|
||||||
<ul className="mb-2 md:mb-4">
|
<ul className="mb-2 md:mb-4">
|
||||||
<li>
|
<li className="mb-2">
|
||||||
· Recording Consent: By using Reflector, you grant us permission to
|
· Recording Consent: By using Reflector, you grant us permission to
|
||||||
record your interactions for the purpose of showcasing Reflector's
|
record your interactions for the purpose of showcasing Reflector's
|
||||||
capabilities during the All In AI conference.
|
capabilities during the All In AI conference.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li className="mb-2">
|
||||||
· Data Access: You will have convenient access to your recorded sessions
|
· Data Access: You will have convenient access to your recorded sessions
|
||||||
and transcriptions via a unique URL, which remains active for a period
|
and transcriptions via a unique URL, which remains active for a period
|
||||||
of seven days. After this time, your recordings and transcripts will be
|
of seven days. After this time, your recordings and transcripts will be
|
||||||
deleted.
|
deleted.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li className="mb-2">
|
||||||
· Data Confidentiality: Rest assured that none of your audio data will
|
· Data Confidentiality: Rest assured that none of your audio data will
|
||||||
be shared with third parties.
|
be shared with third parties.
|
||||||
</li>
|
</li>
|
||||||
@@ -7,8 +7,8 @@ import { ErrorProvider } from "./(errors)/errorContext";
|
|||||||
import ErrorMessage from "./(errors)/errorMessage";
|
import ErrorMessage from "./(errors)/errorMessage";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import About from "./about";
|
import About from "./(aboutAndPrivacy)/about";
|
||||||
import Privacy from "./privacy";
|
import Privacy from "./(aboutAndPrivacy)/privacy";
|
||||||
|
|
||||||
const poppins = Poppins({ subsets: ["latin"], weight: ["200", "400", "600"] });
|
const poppins = Poppins({ subsets: ["latin"], weight: ["200", "400", "600"] });
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,13 @@ type SimpleProps = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const Title = ({ children, className }: SimpleProps) => (
|
const Title = ({ children, className }: SimpleProps) => (
|
||||||
<h2 className={`text-lg md:text-xl ${className}`}>{children}</h2>
|
<h2 className={`text-lg font-bold md:text-xl ${className}`}>{children}</h2>
|
||||||
);
|
);
|
||||||
const Subtitle = ({ children, className }: SimpleProps) => (
|
const Subtitle = ({ children, className }: SimpleProps) => (
|
||||||
<h3 className={`text-base md:text-lg ${className}`}>{children}</h3>
|
<h3 className={`text-base md:text-lg ${className}`}>{children}</h3>
|
||||||
);
|
);
|
||||||
const Paragraph = ({ children, className }: SimpleProps) => (
|
const Paragraph = ({ children, className }: SimpleProps) => (
|
||||||
<p className={`md:text-justify mb-2 md:mb-4 ${className}`}>{children}</p>
|
<p className={`mb-2 md:mb-4 ${className}`}>{children}</p>
|
||||||
);
|
);
|
||||||
|
|
||||||
export { Title, Subtitle, Paragraph };
|
export { Title, Subtitle, Paragraph };
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ import LiveTrancription from "../liveTranscription";
|
|||||||
import DisconnectedIndicator from "../disconnectedIndicator";
|
import DisconnectedIndicator from "../disconnectedIndicator";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
import { faGear } from "@fortawesome/free-solid-svg-icons";
|
import { faGear } from "@fortawesome/free-solid-svg-icons";
|
||||||
import About from "../../about";
|
import About from "../../(aboutAndPrivacy)/about";
|
||||||
import Privacy from "../../privacy";
|
import Privacy from "../../(aboutAndPrivacy)/privacy";
|
||||||
|
|
||||||
const TranscriptCreate = () => {
|
const TranscriptCreate = () => {
|
||||||
const [stream, setStream] = useState<MediaStream | null>(null);
|
const [stream, setStream] = useState<MediaStream | null>(null);
|
||||||
|
|||||||
Reference in New Issue
Block a user