diff --git a/www/app/[domain]/browse/page.tsx b/www/app/[domain]/browse/page.tsx index b2359b9e..b80242ea 100644 --- a/www/app/[domain]/browse/page.tsx +++ b/www/app/[domain]/browse/page.tsx @@ -14,13 +14,7 @@ export default function TranscriptBrowser() { const { loading, response } = useTranscriptList(page); return ( -
- {/* -
- -
- */} - +
Past transcripts )} -
-
+
+
{response?.items.map((item: GetTranscript) => (
{item.title || item.name} diff --git a/www/app/[domain]/layout.tsx b/www/app/[domain]/layout.tsx index 73cc4841..4cb60d8b 100644 --- a/www/app/[domain]/layout.tsx +++ b/www/app/[domain]/layout.tsx @@ -77,7 +77,11 @@ export default async function RootLayout({ children, params }: LayoutProps) { return ( - + "something went really wrong"

}> @@ -85,7 +89,7 @@ export default async function RootLayout({ children, params }: LayoutProps) {
{/* Logo on the left */} diff --git a/www/app/[domain]/transcripts/[transcriptId]/page.tsx b/www/app/[domain]/transcripts/[transcriptId]/page.tsx index 54eca9f9..9b06614b 100644 --- a/www/app/[domain]/transcripts/[transcriptId]/page.tsx +++ b/www/app/[domain]/transcripts/[transcriptId]/page.tsx @@ -15,8 +15,6 @@ import TranscriptTitle from "../transcriptTitle"; import Player from "../player"; import WaveformLoading from "../waveformLoading"; import { useRouter } from "next/navigation"; -import { faSpinner } from "@fortawesome/free-solid-svg-icons"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; type TranscriptDetails = { params: { @@ -67,7 +65,7 @@ export default function TranscriptDetails(details: TranscriptDetails) { } return ( - <> +
{transcript?.response?.title && (
- +
); } diff --git a/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx b/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx index 8615a4b1..3787a889 100644 --- a/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx +++ b/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx @@ -88,7 +88,7 @@ const TranscriptRecord = (details: TranscriptDetails) => { }, []); return ( - <> +
{webSockets.waveform && webSockets.duration && mp3?.media ? ( {
{disconnected && } - +
); }; diff --git a/www/app/[domain]/transcripts/new/page.tsx b/www/app/[domain]/transcripts/new/page.tsx index 045c2db5..0ed68a97 100644 --- a/www/app/[domain]/transcripts/new/page.tsx +++ b/www/app/[domain]/transcripts/new/page.tsx @@ -51,8 +51,7 @@ const TranscriptCreate = () => { useAudioDevice(); return ( - <> -
+
@@ -142,7 +141,7 @@ const TranscriptCreate = () => { )}
- +
); }; diff --git a/www/tailwind.config.js b/www/tailwind.config.js index 5298446d..e8d6c176 100644 --- a/www/tailwind.config.js +++ b/www/tailwind.config.js @@ -9,7 +9,7 @@ module.exports = { theme: { extend: { gridTemplateRows: { - layout: "auto auto minmax(0, 1fr)", + "layout-topbar": "auto minmax(0,1fr)", "mobile-inner": "minmax(0, 2fr) minmax(0, 1fr)", "layout-one": "minmax(0, 1fr) auto", },