Website updates
This commit is contained in:
@@ -1,33 +1,30 @@
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.btn-outline-info:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
</style>
|
||||
const resume = 'https://drive.google.com/file/d/1N1L2SYvqY49OJAR97cjjHANj0ModmZSy/view?usp=drive_link';
|
||||
|
||||
const refrences = [
|
||||
// ['Andre Mourinho', ''],
|
||||
['CD Projekt Red', 'https://files.zakscode.com/share/N61Db3y0'],
|
||||
['Chris Cartwright', 'https://files.zakscode.com/share/luyY49_N'],
|
||||
['Garry Whyte', 'https://files.zakscode.com/share/zHjnHReT'],
|
||||
['Linda Nicodemo', 'https://files.zakscode.com/share/1wKpkQzW'],
|
||||
['Ray Power', 'https://files.zakscode.com/share/bTR2ab_P'],
|
||||
]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="d-block d-md-none">
|
||||
<div class="mb-3">
|
||||
<a class="btn btn-outline-primary w-100">CSV / Resume</a>
|
||||
<a class="btn btn-outline-danger w-100" :href="resume" target="_blank">CSV / Resume</a>
|
||||
</div>
|
||||
<div class="btn-group-vertical w-100" role="group">
|
||||
<a class="btn btn-outline-info">CD Projekt Red</a>
|
||||
<a class="btn btn-outline-info">Chris Cartwright</a>
|
||||
<a class="btn btn-outline-info">Garry Whyte</a>
|
||||
<a class="btn btn-outline-info">Ray Power</a>
|
||||
<a class="btn btn-outline-info">Linda Nicodemo</a>
|
||||
<a v-for="ref in refrences" class="btn btn-outline-primary" :href="ref[1]" target="_blank">{{ref[0]}}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-none d-md-block">
|
||||
<a class="btn btn-outline-primary me-3">CSV / Resume</a>
|
||||
<a class="btn btn-outline-danger me-3" :href="resume" target="_blank">CSV / Resume</a>
|
||||
<div class="btn-group" role="group">
|
||||
<a class="btn btn-outline-info">CD Projekt Red</a>
|
||||
<a class="btn btn-outline-info">Chris Cartwright</a>
|
||||
<a class="btn btn-outline-info">Garry Whyte</a>
|
||||
<a class="btn btn-outline-info">Ray Power</a>
|
||||
<a class="btn btn-outline-info">Linda Nicodemo</a>
|
||||
<a v-for="ref in refrences" class="btn btn-outline-primary" :href="ref[1]" target="_blank">{{ref[0]}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user