Commit 53638838 authored by Adam Parák's avatar Adam Parák 💬
Browse files

checkout 1:

parent f7bb6370
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@
    "@emotion/css": "11.13.5",
    "@emotion/react": "11.14.0",
    "@fontsource/inter": "^5.0.18",
    "@inject/locale": "workspace:locale",
    "@inject/shared": "workspace:shared",
    "@tanstack/react-router": "^1.109.2",
    "ahooks": "3.8.4",
+0 −17
Original line number Diff line number Diff line
import type { NavigationPage } from '../types'

export const NAVIGATION_CONTENT: NavigationPage = {
  title: 'Steps',
  links: {
    introduction: 'Before you start',
    exerciseInformation: 'Exercise essentials',
    learningObjectives: 'LO and LA specification',
    injects: 'Injects specification',
    activitySpecificationOverview: 'LA preparation',
    injectSpecificationOverview: 'Injects preparation',
    other: 'Tools and Addresses',
    finalInformation: 'Duration and Channels',
    conclusion: 'Before you finish',
    download: 'Save your exercise',
  },
}
+0 −25
Original line number Diff line number Diff line
import type { Checklist } from '../../types'

export const CONCLUSION_CONDITIONS: Checklist = [
  {
    name: 'Instructors Team',
    description:
      'Ensure instructors are briefed on their roles and the scenario.',
  },
  {
    name: 'Platform Setup',
    description: 'Set up the platform and add participants.',
  },
  {
    name: 'Simplify Onboarding',
    description: 'Run the tutorial to introduce trainees to IXP.',
  },
  {
    name: 'Communication Plan',
    description: 'Define what trainees need to know before and after.',
  },
  {
    name: 'Organizational Aspects',
    description: 'Check venue, logistics, and supplementary materials.',
  },
]
+0 −17
Original line number Diff line number Diff line
import type { Form } from '../../types'

export const GITLAB_ACCESS_FORM: Form = {
  host: {
    label: 'Host',
    tooltip: '',
  },
  group: {
    label: 'Group path',
    tooltip: 'e.g. inject/definitions',
  },
  token: {
    label: 'Group token',
    tooltip: '',
    optional: true,
  },
}
+0 −43
Original line number Diff line number Diff line
import type { Form } from '../../types'

export const EMAIL_ADDRESS_FORM: Form = {
  address: {
    label: 'Address',
    tooltip: '',
  },
  organization: {
    label: 'Organization',
    tooltip: '',
    optional: true,
  },
  description: {
    label: 'Description',
    tooltip: '',
  },
  teamVisible: {
    label: 'Team visible',
    tooltip: '',
    optional: true,
  },
}

export const EMAIL_TEMPLATE_FORM: Form = {
  address: {
    label: 'Address',
    tooltip: '',
  },
  context: {
    label: 'Context',
    tooltip: '',
  },
  content: {
    label: 'Content',
    tooltip: '',
    optional: true,
  },
  file: {
    label: 'File',
    tooltip: '',
    optional: true,
  },
}
Loading