Comparatif.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <AnchoredSection id="comparative">
  3. <LayoutContainer>
  4. <LayoutUISubTitle>
  5. Comparatif de nos solutions
  6. </LayoutUISubTitle>
  7. <LayoutUITitle>
  8. Choisissez la version qui vous convient !
  9. </LayoutUITitle>
  10. <CommonTableComparatif
  11. standardPrice="14€"
  12. premiumPrice="18€"
  13. :items="comparisonItems"
  14. :color="'#0e2d32'"
  15. :stripeColor="'#fac20a33'"
  16. />
  17. </LayoutContainer>
  18. </AnchoredSection>
  19. </template>
  20. <script setup lang="ts">
  21. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  22. import { ComparisonItem } from "~/types/interface";
  23. const comparisonItems: Array<ComparisonItem> = [
  24. {
  25. label: "GESTION DU RÉPERTOIRE",
  26. includedInStandard: true,
  27. includedInPremium: true,
  28. },
  29. {
  30. label: "AGENDA",
  31. includedInStandard: true,
  32. includedInPremium: true,
  33. },
  34. {
  35. label: "GESTION DU PARC MATÉRIEL",
  36. includedInStandard: true,
  37. includedInPremium: true,
  38. },
  39. {
  40. label: "COMMUNICATION",
  41. includedInStandard: false,
  42. includedInPremium: true,
  43. },
  44. {
  45. label: "SMS",
  46. includedInStandard: "Option",
  47. includedInPremium: "Option",
  48. },
  49. {
  50. label: "NOM DE DOMAINE",
  51. includedInStandard: "Option",
  52. includedInPremium: "Option",
  53. },
  54. {
  55. label: "SITE INTERNET",
  56. includedInStandard: true,
  57. includedInPremium: true,
  58. },
  59. {
  60. label: "STATISTIQUES",
  61. includedInStandard: true,
  62. includedInPremium: true,
  63. },
  64. {
  65. label: "FONCTIONNALITÉ DU RÉSEAU CMF",
  66. includedInStandard: true,
  67. includedInPremium: true,
  68. },
  69. {
  70. label: "SAUVEGARDE",
  71. includedInStandard: true,
  72. includedInPremium: true,
  73. },
  74. {
  75. label: "EXTRANET UTILISATEURS",
  76. includedInStandard: "75 comptes",
  77. includedInPremium: "150 comptes",
  78. },
  79. {
  80. label: "ESPACE DE STOCKAGE",
  81. includedInStandard: "100 Mo",
  82. includedInPremium: "1 Go",
  83. },
  84. {
  85. label: "PAGE DU SITE INTERNET",
  86. includedInStandard: "Restreint",
  87. includedInPremium: "Illimités",
  88. },
  89. ];
  90. </script>
  91. <style scoped>
  92. .v-container{
  93. width: 95%;
  94. margin-right: auto;
  95. margin-left: auto;
  96. }</style>