People is more human than profiles

This commit is contained in:
MartinBraquet
2025-11-03 12:15:18 +01:00
parent 4ac97fc476
commit c7e1bb4463
4 changed files with 7 additions and 7 deletions

View File

@@ -132,7 +132,7 @@ export function BaseBio({defaultValue, onBlur, onEditor}: BaseBioProps) {
{textLength < MIN_BIO_LENGTH &&
<p>
Add {MIN_BIO_LENGTH - textLength} more {MIN_BIO_LENGTH - textLength === 1 ? 'character' : 'characters'} so
your profile can appear in search resultsor leave it for now and explore others profiles first.
you can appear in search resultsor take your time and start by exploring others.
</p>
}
<BioTips/>

View File

@@ -106,8 +106,8 @@ export function PageBase(props: {
)
}
const Profiles = {name: 'Profiles', href: '/', icon: SolidHomeIcon}
const ProfilesHome = {name: 'Profiles', href: '/', icon: HomeIcon}
const Profiles = {name: 'People', href: '/', icon: SolidHomeIcon}
const ProfilesHome = {name: 'People', href: '/', icon: HomeIcon}
const faq = {name: 'FAQ', href: '/faq', icon: SolidQuestionIcon}
const About = {name: 'About', href: '/about', icon: QuestionMarkCircleIcon}
const Signin = {name: 'Sign in', href: '/signin', icon: UserCircleIcon}

View File

@@ -97,7 +97,7 @@ export function ProfilesHome() {
return (
<>
{/*{user && !profile && <Button className="mb-4 lg:hidden" onClick={() => Router.push('signup')}>Create a profile</Button>}*/}
<Title className="!mb-2 text-3xl">Profiles</Title>
<Title className="!mb-2 text-3xl">People</Title>
<Search
youProfile={you}
starredUsers={starredUsers ?? []}

View File

@@ -132,7 +132,7 @@ export function BookmarkStarButton(props: {
return (
<>
<Button onClick={() => setOpen(true)} color="gray-outline" size={'xs'}>
Saved Profiles
Saved People
</Button>
<StarModal
open={open}
@@ -168,9 +168,9 @@ function StarModal(props: {
// }}
>
<Col className={MODAL_CLASS}>
<h3>Saved Profiles</h3>
<h3>Saved People</h3>
{visibleUsers?.length ? (<>
<p>Here are the profiles you saved:</p>
<p>Here are the people you saved:</p>
<Col
className={
'border-ink-300bg-canvas-0 inline-flex flex-col gap-2 rounded-md border p-1 shadow-sm'