Files
lixiyu-net/components/reader-page/BottomCard.tsx

11 lines
340 B
TypeScript
Raw Normal View History

2024-04-03 22:08:27 +08:00
import { Config } from "@/data/config";
export const BottomCard = () => {
return (
<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>
);
};