-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathconfig.example.js
More file actions
55 lines (46 loc) · 2.43 KB
/
Copy pathconfig.example.js
File metadata and controls
55 lines (46 loc) · 2.43 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Love Website Configuration - Example
// Copy this file to config.js and customize it with your information
const CONFIG = {
// Partner's name (will be used throughout the website)
partnerName: "Sarah",
// Your name (optional, for signature)
yourName: "Alex",
// Custom messages
messages: {
subtitle: "you light up my world in ways words can't express ✨",
loveNote: "you are the sunshine in my darkest days and the stars in my night sky. Every moment with you feels like magic, and I fall in love with you more each day. You're not just my girlfriend, you're my best friend, my soulmate, and my everything. I love you beyond words! 💖",
specialMessage: "You came into my life like a beautiful surprise, and now I can't imagine my world without you. Your smile brightens my darkest days, your laugh is my favorite melody, and your love is the greatest gift I've ever received.",
specialMessage2: "Thank you for being you, for loving me, and for making every day feel like a celebration. I promise to love you, cherish you, and make you smile every single day of our lives together.",
signature: "With all my love, Forever yours 💕"
},
// Memory descriptions
memories: {
lateNight: "Those endless conversations that made us forget about time",
firstMeeting: "I know the day we meet will be magical and unforgettable",
care: "Your caring nature, sweet voice, and adorable cuteness"
},
// Character descriptions
characters: {
partner: "My beautiful angel",
you: "Forever yours"
},
// Special messages for different kiss counts
kissMessages: {
10: "10 kisses! You're so sweet! 💕",
50: "50 kisses! I'm falling deeper in love! 💖",
100: "100 kisses! You're my everything! 💘"
},
// Character interaction messages
characterMessages: {
partner: "you're the most beautiful person in the world! 💕",
you: "I'm so lucky to have you in my life! 💖"
},
// Memory effect messages
memoryMessages: {
lateNight: "Those late nights talking with you are my favorite memories 🌙✨",
firstMeeting: "I know the day we meet will be magical and unforgettable 💫💕",
care: "Your caring nature, sweet voice, and adorable cuteness melt my heart 💕😍"
}
};
// Make config available globally
window.CONFIG = CONFIG;