15 lines
542 B
TypeScript
15 lines
542 B
TypeScript
'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;
|