vision-start/constants.tsx
2025-07-18 22:07:22 -03:00

19 lines
353 B
TypeScript
Executable File

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',
},
],
},
];