initial commit

This commit is contained in:
fiatcode 2025-10-18 10:37:22 +07:00
commit 83337e0574
14 changed files with 2825 additions and 0 deletions

28
src/types.d.ts vendored Normal file
View file

@ -0,0 +1,28 @@
export interface Quote {
id: number;
text: string;
author: string;
}
export interface Translation {
id: number;
lang: string;
tableName: string;
}
export interface UnsplashImage {
id: string;
description: string;
color: string;
blurHash: string;
url: string;
originUrl: string;
authorName: string;
authorBio: string;
authorLocation: string;
authorTotalLikes: number;
authorTotalPhotos: number;
authorIsForHire: boolean;
authorProfileImageUrl: string;
authorUrl: string;
}