1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-24 23:01:05 +03:00

Hide placeholder footer content

This commit is contained in:
Hugh Nimmo-Smith
2023-09-01 13:16:11 +01:00
committed by Quentin Gliech
parent f3d6f3c89e
commit 630b5ebeec

View File

@@ -48,7 +48,8 @@ const Layout: React.FC<{ children?: React.ReactNode }> = ({ children }) => {
<main>{children}</main>
<footer className={styles.footer}>
{/* TODO: the footer needs to be reworked to show configurable info not hardcoded links: https://github.com/matrix-org/matrix-authentication-service/issues/1675 */}
{/* <footer className={styles.footer}>
<nav className={styles.footerLinks}>
<ul>
<Link href="https://matrix.org/legal/copyright-notice">Info</Link>
@@ -58,7 +59,7 @@ const Layout: React.FC<{ children?: React.ReactNode }> = ({ children }) => {
</Link>
</ul>
</nav>
</footer>
</footer> */}
</div>
);
};