- update pages
This commit is contained in:
@@ -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,
|
||||
},
|
||||
});
|
||||
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user