Added links to contact page

This commit is contained in:
2025-04-01 23:31:33 +02:00
parent 11ece73e50
commit 4dcb0efc96
2 changed files with 8 additions and 3 deletions

View File

@@ -27,7 +27,9 @@
<div id="footer_contact_div"> <div id="footer_contact_div">
<h1>Contact</h1> <h1>Contact</h1>
<p>Want to contact me ? Let's have a talk !</p> <p>Want to contact me ? Let's have a talk !</p>
<router-link to="contact">
<div id="footer_contact_button" class="button">Contact</div> <div id="footer_contact_button" class="button">Contact</div>
</router-link>
</div> </div>
<div id="footer_picture"> <div id="footer_picture">
@@ -40,6 +42,8 @@
</template> </template>
<script setup> <script setup>
import { RouterLink } from 'vue-router';
import social from './home/libs/social.vue'; import social from './home/libs/social.vue';
import mailSvg from '@/assets/img/mail.svg'; import mailSvg from '@/assets/img/mail.svg';
@@ -57,7 +61,7 @@
},{ },{
img:mailSvg, img:mailSvg,
routerLink:true, routerLink:true,
link:"#" link:"contact"
}]; }];
</script> </script>
@@ -157,6 +161,7 @@
font-size: 1.1em; font-size: 1.1em;
width: 50%; width: 50%;
margin: auto; margin: auto;
color:black;
} }
#footer_little_text{ #footer_little_text{

View File

@@ -45,7 +45,7 @@
},{ },{
img:mailSvg, img:mailSvg,
routerLink:true, routerLink:true,
link:"#" link:"contact"
}]; }];
</script> </script>