mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
New footer
This commit is contained in:
@@ -16,7 +16,15 @@ export default function RootLayout({ children }) {
|
|||||||
<Head>
|
<Head>
|
||||||
<title>Test</title>
|
<title>Test</title>
|
||||||
</Head>
|
</Head>
|
||||||
<body className={roboto.className}>{children}</body>
|
<body className={roboto.className + " flex flex-col min-h-screen"}>
|
||||||
|
<main className="flex-grow">
|
||||||
|
{children}
|
||||||
|
</main>
|
||||||
|
<footer className="w-full bg-gray-800 text-white text-center py-4 fixed inset-x-0 bottom-0">
|
||||||
|
© 2023 Reflector, a product of Monadical
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ const App = () => {
|
|||||||
<Dashboard
|
<Dashboard
|
||||||
isRecording={isRecording}
|
isRecording={isRecording}
|
||||||
onRecord={(recording) => handleRecord(recording)}
|
onRecord={(recording) => handleRecord(recording)}
|
||||||
transcriptionText={serverData.text ?? "(No transcription text)"}
|
transcriptionText={serverData.text ?? "..."}
|
||||||
finalSummary={serverData.finalSummary}
|
finalSummary={serverData.finalSummary}
|
||||||
topics={serverData.topics ?? []}
|
topics={serverData.topics ?? []}
|
||||||
stream={stream}
|
stream={stream}
|
||||||
|
|||||||
Reference in New Issue
Block a user