profile-edit-hide-chat

fix profile page & remove chat point in navigation bar
This commit is contained in:
gofnnp 2025-07-01 15:56:43 +04:00
parent 1d9d7705fe
commit d54d1225f7
3 changed files with 14 additions and 11 deletions

View File

@ -20,7 +20,8 @@ const HOROSCOPE_TEXT = {
today:
"Trust your instincts — theyll help you navigate a small but unexpected challenge. A kind gesture or uplifting message may come your way, reminding you of your deeper connections. Make time this evening to unwind and recharge, even if just for a little while.",
week: "This week brings subtle shifts. Something youve been waiting for might finally begin to move — slowly, but in the right direction. Stay grounded when things feel uncertain, and dont ignore the small signs around you. Theyre pointing you where you need to go. By the weekend, clarity begins to settle in..",
month: "A period of quiet transformation is unfolding. You may find yourself rethinking certain priorities or discovering a new sense of purpose in familiar routines. Theres no rush — let things evolve naturally. Conversations that happen mid-month could carry more meaning than they seem at first. Listen closely.",
month:
"A period of quiet transformation is unfolding. You may find yourself rethinking certain priorities or discovering a new sense of purpose in familiar routines. Theres no rush — let things evolve naturally. Conversations that happen mid-month could carry more meaning than they seem at first. Listen closely.",
year: "The year ahead holds both growth and gentle reminders of what truly matters. There may be moments when youre pulled in many directions, but your inner compass will remain strong — trust it. Youll build something meaningful this year, even if it takes time. Stay open, stay curious, and stay kind to yourself along the way.",
};

View File

@ -25,9 +25,11 @@ const ProfileSchema = z.object({
const PartnerSchema = z
.object({
birthplace: z.object({
address: z.string(),
}),
birthplace: z
.object({
address: z.string(),
})
.optional(),
birthdate: z.string(),
gender: z.string(),
age: z.number(),

View File

@ -17,13 +17,13 @@ export const navItems: NavItem[] = [
icon: IconName.Home,
href: ROUTES.home(),
},
{
key: "chat",
label: "Chat",
icon: IconName.Chat,
href: ROUTES.chat(),
badge: 12,
},
// {
// key: "chat",
// label: "Chat",
// icon: IconName.Chat,
// href: ROUTES.chat(),
// badge: 12,
// },
{
key: "advisers",
label: "Advi...",