mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-25 01:12:42 -04:00
People is more human than profiles
This commit is contained in:
@@ -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 results—or leave it for now and explore others’ profiles first.
|
||||
you can appear in search results—or take your time and start by exploring others.
|
||||
</p>
|
||||
}
|
||||
<BioTips/>
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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 ?? []}
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user