Update landing page with claude

This commit is contained in:
2026-01-13 11:43:30 -06:00
parent 43d010f7e4
commit 9819b14e71
17 changed files with 725 additions and 183 deletions

View File

@@ -13,12 +13,10 @@ interface ProfileCardProps {
const ProfileHeader = ({ preloadedUser }: ProfileCardProps) => {
const user = usePreloadedQuery(preloadedUser);
return (
<CardHeader className="pb-2">
<CardTitle className="text-2xl">
{user?.name ?? user?.email ?? 'Your Profile'}
</CardTitle>
<CardHeader>
<CardTitle className="text-xl">Account Settings</CardTitle>
<CardDescription>
Manage your personal information &amp; how it appears to others.
Update your profile information and manage your account preferences
</CardDescription>
</CardHeader>
);