- update pages

This commit is contained in:
2023-07-30 23:22:36 +02:00
parent 155f52c331
commit c8000b55cd
9 changed files with 144 additions and 89 deletions

View File

@@ -8,16 +8,16 @@ import Links from './Side/Links.vue';
const props = defineProps({
token: {
type: String,
default: null,
type: [String, null],
},
rodo: {
type: String,
default: null,
type: [String, null],
},
loading: {
required: true,
type: Boolean,
default: false,
},
});

View File

@@ -6,21 +6,35 @@ import ContactList from './Header/ContactList.vue';
defineProps({
loading: {
tyle: Boolean,
default: false,
},
email: {
type: String,
default: 'contact@kamilcraft.com',
},
tel: {
type: Object,
default: {
hasPhoneNumber: false,
phoneNumber: '',
formattedPhoneNumber: '',
},
},
locations: {
type: Array,
default: [
'Wrocław',
'Legnica',
'Remote',
],
},
position: {
type: [String, null],
type: String,
default: null,
},
mission: {
type: Array,
default: [],
},
});
</script>
@@ -50,7 +64,7 @@ defineProps({
</style>
<template>
<div class="flex justify-between mx-1 mt-1 print:border-b-2 md:border-b-2">
<div class="bg-blob flex justify-between mx-1 mt-1 print:border-b-2 md:border-b-2">
<div class="flex-shrink-0 w-32 h-32">
<img class="w-full h-full" alt="Profilowe" src="/me.webp" />
</div>