updated docs
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
'use server';
|
||||
import { FC } from "react";
|
||||
import { langGetKey } from "@/lib/langGet";
|
||||
import { FooterProps } from "@/validations/mutual/dashboard/props";
|
||||
|
||||
const FooterComponent: FC<FooterProps> = ({ translations }) => {
|
||||
return (
|
||||
<div className="fixed text-center bottom-0 left-0 right-0 h-16 p-4 border-t border-emerald-150 border-t-2 shadow-sm backdrop-blur-sm bg-emerald-50">
|
||||
<h1>{langGetKey(translations, "footer")}: {langGetKey(translations, "page")}</h1>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default FooterComponent;
|
||||
Reference in New Issue
Block a user