header for the site, and making the 1st layout for the components, still trying to figure out the framework

This commit is contained in:
Mohamed Maoulainine Maoulainine
2025-02-06 15:40:13 +01:00
parent 4256feed23
commit 8abbddaebd
6 changed files with 82 additions and 78 deletions

View File

@ -0,0 +1,26 @@
<template>
<header>
<img src="./icons/logo inpulse.png" alt="INPulse" />
</header>
</template>
<script lang="ts">
export default {
name: 'Header',
};
</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>