feat: all project setup

This commit is contained in:
ivannoskov
2025-11-10 12:07:24 +03:00
parent fbfd7719bb
commit b0a9934220
99 changed files with 19597 additions and 0 deletions

32
lib/mocks/data/users.ts Normal file
View File

@@ -0,0 +1,32 @@
import { User } from "@/lib/types/api";
// ============================================================================
// Mock Users Data
// ============================================================================
export const mockUsers: User[] = [
{
id: "1",
telegram_id: 123456789,
username: "ivan_test",
first_name: "Иван",
last_name: "Иванов",
created_at: "2024-01-15T10:00:00.000Z",
},
{
id: "2",
telegram_id: 987654321,
username: "maria_test",
first_name: "Мария",
last_name: "Петрова",
created_at: "2024-02-01T10:00:00.000Z",
},
];
export const mockCurrentUser = mockUsers[0];
// Mock tokens
export const mockTokens = {
access_token: "mock_access_token_123456789",
refresh_token: "mock_refresh_token_123456789",
};