wip: settings screen

This commit is contained in:
2023-11-15 14:20:45 +07:00
parent 04c1223f2e
commit 875225591a
19 changed files with 500 additions and 453 deletions

View File

@@ -1,3 +1,19 @@
export function SettingsScreen() {
return <div></div>;
import { ContactCard } from '@app/settings/components/contactCard';
import { PostCard } from '@app/settings/components/postCard';
import { ProfileCard } from '@app/settings/components/profileCard';
import { RelayCard } from '@app/settings/components/relayCard';
import { ZapCard } from '@app/settings/components/zapCard';
export function UserSettingScreen() {
return (
<div className="mx-auto w-full max-w-xl">
<ProfileCard />
<div className="grid grid-cols-2 gap-4">
<ContactCard />
<RelayCard />
<PostCard />
<ZapCard />
</div>
</div>
);
}