First Commit

This commit is contained in:
2026-09-12 13:56:36 +01:00
commit 4d75af0418
426 changed files with 36452 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import Row from "@/src/components/twui/layout/Row";
import { AppContext } from "@/src/pages/__root";
import type { AppContextObject } from "@/src/types";
import React from "react";
export default function Footer() {
const appContext: AppContextObject = React.useContext(AppContext);
const { user, appState } = appContext;
/**
* Render component
*/
return (
<footer className="w-full p-4 h-20">
<Row className="h-full">
<span>Copyright {new Date().getFullYear()}</span>
</Row>
</footer>
);
}