Files
demo-websites/main-website/app/data/demos.ts
Thatsaphorn Atchariyaphap 863e8cedbf Add GitLab CI, Dockerfile, and demo-1
* Configured GitLab CI for Docker image builds and added a Dockerfile with the necessary setup for the main website and demo-1.
* Updated URL and removed duplicate entry in `demos.ts` to resolve conflicts.
* Integrated `.run` configuration for lawfirm-demo1 to streamline local development.
2025-06-07 09:04:12 +02:00

43 lines
1.3 KiB
TypeScript

export const demoCategories = [
{
label: 'Anwaltskanzlei',
items: [
{
name: 'Anwaltskanzlei Demo 1',
url: 'http://localhost:5101',
preview: '/previews/lawfirm-1.png',
description: [
'Modernes Design',
'Dunkles Layout',
'Optimiert für Rechtsanwälte',
],
},
{
name: 'Anwaltskanzlei Demo 2',
url: 'http://localhost:5101',
preview: '/previews/lawfirm-1.png',
description: [
'Modernes Design',
'Dunkles Layout',
'Optimiert für Rechtsanwälte',
'Optimiert für Rechtsanwälte 1',
],
},
],
},
{
label: 'SaaS',
items: [
{
name: 'SaaS Landing Page',
url: 'http://localhost:5201',
preview: '/previews/saas-1.png',
description: [
'Klares und minimales UI',
'Produktorientiertes Layout',
'Responsive + animiert',
],
},
],
},
]