init create-fias

This commit is contained in:
Samandar Turgunboyev
2025-12-12 11:21:30 +05:00
commit a5b46a9f26
76 changed files with 36104 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
import { Book, Sunset, Trees, Zap } from 'lucide-react';
import { MenuItem } from './model';
import { LanguageRoutes } from '@/shared/config/i18n/types';
const menu: MenuItem[] = [
{ title: 'Home', url: '#' },
{
title: 'Products',
url: '#',
items: [
{
title: 'Blog',
description: 'The latest industry news, updates, and info',
icon: Book,
url: '#',
},
{
title: 'Company',
description: 'Our mission is to innovate and empower the world',
icon: Trees,
url: '#',
},
{
title: 'Careers',
description: 'Browse job listing and discover our workspace',
icon: Sunset,
url: '#',
},
{
title: 'Support',
description:
'Get in touch with our support team or visit our community forums',
icon: Zap,
url: '#',
},
],
},
{
title: 'Resources',
url: '#',
items: [
{
title: 'Help Center',
description: 'Get all the answers you need right here',
icon: Zap,
url: '#',
},
{
title: 'Contact Us',
description: 'We are here to help you with any questions you have',
icon: Sunset,
url: '#',
},
{
title: 'Status',
description: 'Check the current status of our services and APIs',
icon: Trees,
url: '#',
},
{
title: 'Terms of Service',
description: 'Our terms and conditions for using our services',
icon: Book,
url: '#',
},
],
},
{
title: 'Pricing',
url: '#',
},
{
title: 'Blog',
url: '#',
},
];
const languages: { name: string; key: LanguageRoutes }[] = [
{
name: "O'zbekcha",
key: LanguageRoutes.UZ,
},
{
name: 'Ўзбекча',
key: LanguageRoutes.KI,
},
{
name: 'Русский',
key: LanguageRoutes.RU,
},
];
export { menu, languages };

View File

@@ -0,0 +1,7 @@
export interface MenuItem {
title: string;
url: string;
description?: string;
icon?: React.ComponentType<{ className?: string }>;
items?: MenuItem[];
}