2024-04-03 22:08:27 +08:00
|
|
|
import { Config } from "@/data/config";
|
|
|
|
|
|
|
|
|
|
export const BottomCard = () => {
|
|
|
|
|
return (
|
2024-08-14 12:57:22 +08:00
|
|
|
<div className="flex w-full flex-col justify-center p-8">
|
|
|
|
|
<img alt={Config.AuthorName} className="mx-auto h-24 w-24 rounded-full" src={Config.AvatarURL} />
|
2024-08-12 13:39:19 +08:00
|
|
|
<p className="mx-auto mt-5 content-font">{Config.Sentence}</p>
|
2024-04-03 22:08:27 +08:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|