This commit is contained in:
2025-07-18 22:07:22 -03:00
commit d30fd8d30b
25 changed files with 3270 additions and 0 deletions

18
constants.tsx Executable file
View File

@@ -0,0 +1,18 @@
import { Category } from './types';
export const DEFAULT_CATEGORIES: Category[] = [
{
id: '1',
name: 'Search',
websites: [
{
id: '1',
name: 'Google',
url: 'https://www.google.com',
icon: 'https://www.google.com/s2/favicons?domain=google.com&sz=128',
categoryId: '1',
},
],
},
];