update footer

This commit is contained in:
ppc
2024-08-21 21:03:21 +01:00
parent 64f60ac9f5
commit bc2014b847
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
export function AMFooter(props: {children?: Readonly<React.ReactNode>, className?: string}) {
return (<footer className={props.className ?? "flex sm:justify-start justify-center"}>
<span className="text-gray-500 text-sm text-center">AMNet &copy; ppc {new Date().getUTCFullYear()}</span>
return (<footer className={props.className ?? "flex sm:justify-end justify-center"}>
<span className="text-gray-500 text-sm text-center">&copy; ppc {new Date().getUTCFullYear()}</span>
{props.children}
</footer>);
}
+1 -1
View File
@@ -32,8 +32,8 @@ import {
import {AMFooter} from "@/components/am-footer.tsx";
import {AMHeader} from "@/components/am-header.tsx";
import {AMCard, AMCardDetail} from "@/components/am-card.tsx";
import {AMNET_API_VERSION} from "@/lib/aime-net.ts";
import {AMCard, AMCardDetail} from "@/components/am-card.tsx";
const serverAdditionSchema = z.object({
address: z.string().startsWith("http")