You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

2 years ago
  1. <template>
  2. <div class="tw-p-[40px] tw-bg-neutrals-100 tw-rounded-[20px]">
  3. <div class="tw-flex tw-justify-between tw-items-center tw-mb-[20px]">
  4. <h4 class="t24 tw-text-primary-1">${{ totalPrice }} {{ currency }}</h4>
  5. <like></like>
  6. </div>
  7. <div class="tw-body-4 tw-text-neutral-500 tw-mb-[10px]">
  8. {{ confirmationTime }}{{ $t('-hours confirmation') }}
  9. </div>
  10. <!-- <div class="tw-body-4 tw-text-neutral-500">
  11. {{ $t("Use code APP5OFF for 10% off") }}
  12. </div> -->
  13. <a class="tw-transition tw-flex tw-justify-center tw-items-center tw-btn-md tw-text-white tw-bg-primary-1 tw-px-[16px] tw-py-[10px] tw-mr-[20px] tw-mt-[22px] tw-rounded-xl tw-w-full"
  14. href="#" v-scroll-to="{
  15. el: '#packageOptions',
  16. offset: -150,
  17. }">
  18. {{ $t("Select Options") }}
  19. </a>
  20. </div>
  21. </template>
  22. <script>
  23. import like from "@/components/newComponent/like/like.vue";
  24. export default {
  25. props: {
  26. totalPrice: {
  27. type: String,
  28. },
  29. currency: {
  30. type: String
  31. },
  32. confirmationTime: {
  33. type: String
  34. },
  35. },
  36. components: {
  37. like,
  38. },
  39. };
  40. </script>
  41. <style lang="scss" scoped>
  42. </style>