Audit fixes: Lotus URLs, branding, editor toolbar setting, dynamic version

This commit is contained in:
root
2026-05-13 23:03:14 -04:00
parent 01781554a2
commit cfe52d623a
7 changed files with 42 additions and 12 deletions
+6 -5
View File
@@ -1,24 +1,25 @@
import React from 'react';
import { Box, Text } from 'folds';
import * as css from './styles.css';
import pkg from '../../../../package.json';
export function AuthFooter() {
return (
<Box className={css.AuthFooter} justifyContent="Center" gap="400" wrap="Wrap">
<Text as="a" size="T300" href="https://cinny.in" target="_blank" rel="noreferrer">
<Text as="a" size="T300" href="https://lotusguild.org" target="_blank" rel="noreferrer">
About
</Text>
<Text
as="a"
size="T300"
href="https://github.com/ajbura/cinny/releases"
href="https://code.lotusguild.org/LotusGuild/cinny/releases"
target="_blank"
rel="noreferrer"
>
v4.11.1
v{pkg.version}
</Text>
<Text as="a" size="T300" href="https://twitter.com/cinnyapp" target="_blank" rel="noreferrer">
Twitter
<Text as="a" size="T300" href="https://matrix.lotusguild.org" target="_blank" rel="noreferrer">
Community
</Text>
<Text as="a" size="T300" href="https://matrix.org" target="_blank" rel="noreferrer">
Powered by Matrix
+3 -2
View File
@@ -2,6 +2,7 @@ import React from 'react';
import { Box, Button, Icon, Icons, Text, config, toRem } from 'folds';
import { Page, PageHero, PageHeroSection } from '../../components/page';
import LotusLogo from '../../../../public/res/Lotus.png';
import pkg from '../../../../package.json';
export function WelcomePage() {
return (
@@ -18,13 +19,13 @@ export function WelcomePage() {
title="Welcome to Lotus Chat"
subTitle={
<span>
Yet another matrix client.{' '}
A Matrix client for Lotus Guild.{' '}
<a
href="https://code.lotusguild.org/LotusGuild/cinny/releases"
target="_blank"
rel="noreferrer noopener"
>
v4.11.1
v{pkg.version}
</a>
</span>
}