forked from cerc-io/snowballtools-base
* 🎨 style: adjust wavy border and add layout wavy border * ♻️ refactor: change sidebar to use `nav` * ♻️ refactor: org slug dashboard layout * ♻️ refactor: create project layout and restyling it * ♻️ refactor: remove unused style * ⚡️ feat: restyling template card * ⚡️ feat: create template icon component * ⚡️ feat: use `h2` for layout title * ⚡️ feat: Add isComingSoon property to templates and handle click event in TemplateCard component * ♻️ refactor: WavyBorder component and update CreateProjectLayout * 🎨 style: update button medium size padding * 🎨 style: update layout shadow and add new shadow for the template card * ⚡️ feat: add wavy border gradient and line svg assets * refactor: update wavy border svg * 🎨 style: adjust template card name and arrow also responsive of the list of template --------- Co-authored-by: Zachery Ng <zachery.ng@gmail.com>
38 lines
708 B
TypeScript
38 lines
708 B
TypeScript
export default [
|
|
{
|
|
id: '1',
|
|
name: 'Progressive Web App (PWA)',
|
|
icon: 'pwa',
|
|
repoFullName: `${process.env.REACT_APP_GITHUB_PWA_TEMPLATE_REPO}`,
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '2',
|
|
name: 'Image Upload PWA',
|
|
icon: 'pwa',
|
|
repoFullName: `${process.env.REACT_APP_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO}`,
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'Kotlin',
|
|
icon: 'kotlin',
|
|
repoFullName: '',
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '4',
|
|
name: 'React Native',
|
|
icon: 'react-native',
|
|
repoFullName: '',
|
|
isComingSoon: false,
|
|
},
|
|
{
|
|
id: '5',
|
|
name: 'Swift',
|
|
icon: 'swift',
|
|
repoFullName: '',
|
|
isComingSoon: true,
|
|
},
|
|
];
|