Files
MyINPulse/front/MyINPulse-front/src/components/HeaderComponent.vue
ALAMI Adnane fcc20d1f42
All checks were successful
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 38s
CI / build (push) Successful in 11s
Format / formatting (pull_request) Successful in 6s
fix: (forgot to say that the layout in enhanced in last commit) + fix du prettier
2025-04-23 11:07:32 +02:00

37 lines
677 B
Vue

<template>
<header>
<a
href="https://www.bordeaux-inp.fr/fr/lincubateur-bordeaux-inpulse"
target="_blank"
rel="noopener"
>
<img
src="./icons/logo inpulse.png"
alt="INPulse Logo"
class="logo"
/>
</a>
</header>
</template>
<script lang="ts">
export default {
name: "HeaderComponent",
};
</script>
<style scoped>
header img {
width: 100px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #fff;
border-bottom: 2px solid #ddd;
}
</style>