[fix] reorganize some modules

This commit is contained in:
PrinOrange
2024-08-16 10:41:36 +08:00
parent 7534b81eb4
commit 9198482c46
18 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
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} />
<p className="mx-auto mt-5 content-font">{Config.Sentence}</p>
</div>
);
};