Skip to content

Commit c7e1bb4

Browse files
committed
People is more human than profiles
1 parent 4ac97fc commit c7e1bb4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

web/components/bio/editable-bio.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export function BaseBio({defaultValue, onBlur, onEditor}: BaseBioProps) {
132132
{textLength < MIN_BIO_LENGTH &&
133133
<p>
134134
Add {MIN_BIO_LENGTH - textLength} more {MIN_BIO_LENGTH - textLength === 1 ? 'character' : 'characters'} so
135-
your profile can appear in search results—or leave it for now and explore others’ profiles first.
135+
you can appear in search results—or take your time and start by exploring others.
136136
</p>
137137
}
138138
<BioTips/>

web/components/page-base.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ export function PageBase(props: {
106106
)
107107
}
108108

109-
const Profiles = {name: 'Profiles', href: '/', icon: SolidHomeIcon}
110-
const ProfilesHome = {name: 'Profiles', href: '/', icon: HomeIcon}
109+
const Profiles = {name: 'People', href: '/', icon: SolidHomeIcon}
110+
const ProfilesHome = {name: 'People', href: '/', icon: HomeIcon}
111111
const faq = {name: 'FAQ', href: '/faq', icon: SolidQuestionIcon}
112112
const About = {name: 'About', href: '/about', icon: QuestionMarkCircleIcon}
113113
const Signin = {name: 'Sign in', href: '/signin', icon: UserCircleIcon}

web/components/profiles/profiles-home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export function ProfilesHome() {
9797
return (
9898
<>
9999
{/*{user && !profile && <Button className="mb-4 lg:hidden" onClick={() => Router.push('signup')}>Create a profile</Button>}*/}
100-
<Title className="!mb-2 text-3xl">Profiles</Title>
100+
<Title className="!mb-2 text-3xl">People</Title>
101101
<Search
102102
youProfile={you}
103103
starredUsers={starredUsers ?? []}

web/components/searches/button.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export function BookmarkStarButton(props: {
132132
return (
133133
<>
134134
<Button onClick={() => setOpen(true)} color="gray-outline" size={'xs'}>
135-
Saved Profiles
135+
Saved People
136136
</Button>
137137
<StarModal
138138
open={open}
@@ -168,9 +168,9 @@ function StarModal(props: {
168168
// }}
169169
>
170170
<Col className={MODAL_CLASS}>
171-
<h3>Saved Profiles</h3>
171+
<h3>Saved People</h3>
172172
{visibleUsers?.length ? (<>
173-
<p>Here are the profiles you saved:</p>
173+
<p>Here are the people you saved:</p>
174174
<Col
175175
className={
176176
'border-ink-300bg-canvas-0 inline-flex flex-col gap-2 rounded-md border p-1 shadow-sm'

0 commit comments

Comments
 (0)