navbar changed

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-30 14:35:20 +05:00
parent 6265edf673
commit 8d9b1fcfdd
20 changed files with 423 additions and 100 deletions

View File

@@ -3,7 +3,7 @@ import { LanguageRoutes } from './types';
export const routing = defineRouting({
// A list of all locales that are supported
locales: [LanguageRoutes.UZ, LanguageRoutes.RU, LanguageRoutes.KI],
locales: [LanguageRoutes.UZ, LanguageRoutes.RU, LanguageRoutes.EN],
// Used when no locale matches
defaultLocale: LanguageRoutes.UZ,

View File

@@ -1,5 +1,5 @@
export enum LanguageRoutes {
UZ = 'uz', // o'zbekcha
RU = 'ru', // ruscha
KI = 'ki', // kirilcha
EN = 'en', // english
}

23
src/shared/ui/label.tsx Normal file
View File

@@ -0,0 +1,23 @@
'use client';
import * as React from 'react';
import * as LabelPrimitive from '@radix-ui/react-label';
import { cn } from '../lib/utils';
function Label({
className,
...props
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
data-slot="label"
className={cn(
'flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50',
className,
)}
{...props}
/>
);
}
export { Label };

View File

@@ -0,0 +1,21 @@
import { create } from 'zustand';
interface User {
id: string;
name: string;
surname: string;
}
interface UserLoginStore {
user: User | null;
setUser: (user: User) => void;
clearUser: () => void;
getUser: () => User | null;
}
export const useUserLogin = create<UserLoginStore>((set, get) => ({
user: null,
setUser: (user: User) => set({ user }),
clearUser: () => set({ user: null }),
getUser: () => get().user,
}));