feat: white label transformation and bugfix for audio stream
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
'use client';
|
||||
|
||||
import { config } from '@/lib/config';
|
||||
import { useEffect, useState } from 'react';
|
||||
|
||||
export default function AppFooter() {
|
||||
@@ -12,14 +13,15 @@ export default function AppFooter() {
|
||||
.catch(() => setVersion(''));
|
||||
}, []);
|
||||
|
||||
if (!config.credits.enabled) return null;
|
||||
|
||||
return (
|
||||
<footer className="app-footer">
|
||||
<p>
|
||||
Vibe coded with ☕ and 🍺 by{' '}
|
||||
<a href="https://digitalcourage.social/@elpatron" target="_blank" rel="noopener noreferrer">
|
||||
@elpatron@digitalcourage.social
|
||||
{config.credits.text}{' '}
|
||||
<a href={config.credits.linkUrl} target="_blank" rel="noopener noreferrer">
|
||||
{config.credits.linkText}
|
||||
</a>
|
||||
{' '}- prototype for personal use among friends only!
|
||||
{version && (
|
||||
<>
|
||||
{' '}·{' '}
|
||||
|
||||
Reference in New Issue
Block a user