-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
32 lines (32 loc) · 990 Bytes
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export default defineAppConfig({
alpine: {
title: "Jérémy Riverain",
description: `Hi, I'm Jérémy. I'm developer, living in France 🇫🇷 . I work for Zenika as a consultant. I like programming with with VueJS, Flutter, Symfony.`,
image: {
src: "https://www.geekco.fr/alpine-0.webp",
alt: "An image showcasing my project.",
width: 400,
height: 300,
},
header: {},
footer: {
credits: {
enabled: false,
},
navigation: false,
alignment: "center", // possible value are : 'none' | 'left' | 'center' | 'right'
message: "Follow me on", // string that will be displayed in the footer (leave empty or delete to disable)
},
socials: {
github: "jeremyriverain",
linkedin: {
icon: "uil:linkedin",
label: "LinkedIn",
href: "https://www.linkedin.com/in/jeremy-riverain",
},
},
form: {
successMessage: "Message sent. Thank you!",
},
},
});