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,18 @@
<template>
<div class="project">
<div class="project-header">
<h2>{{ projectName }}</h2>
</div>
</div>
</template>
<script lang="ts">
export default {
name: 'Project',
props: {
projectName: String,
}
}
</script>