62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
title = 'Frequently asked questions'
|
|
|
|
content = {
|
|
'How does this process work?': {
|
|
'tag': 'basics-faq',
|
|
'answer': '''First go to the services page. On the bottom
|
|
of the page, you'll find a "Request meet & greet"
|
|
button. After filling out the form, I'll get an email
|
|
with the form information. I will contact you about
|
|
the request within 24 hours.'''
|
|
},
|
|
'What types of payments do you accept?': {
|
|
'tag': 'accepted-payments-faq',
|
|
'answer': '''A broad range of payment types are accepted '
|
|
to make the process easy.''',
|
|
'include': [
|
|
'Cash',
|
|
'Credit/Debit cards',
|
|
'ACH (direct bank transfers)',
|
|
'Paypal',
|
|
'Apple Pay',
|
|
'Google Pay',
|
|
'Zelle'
|
|
]
|
|
},
|
|
'When is payment for a service due?': {
|
|
'tag': 'payment-terms-faq',
|
|
'answer': 'Payments are due 7 days after invoicing. '
|
|
+ 'Invoices are usually sent after completed services.'
|
|
},
|
|
'What kind of animals do you caretake?': {
|
|
'tag': 'animal-types-faq',
|
|
'answer': '''I have experience careing for many types of animals.
|
|
I provide care for reptiles, mammals, etc.'''
|
|
},
|
|
'Can you care for special needs pets?': {
|
|
'tag': 'special-needs-faq',
|
|
'answer': '''I have experience care for special needs, including older
|
|
animals'''
|
|
},
|
|
'Can you stay at my house?': {
|
|
'tag': 'house-sitting-faq',
|
|
'answer': 'I offer house sitting services. This includes in home stays.'
|
|
},
|
|
'Can you take care of my plants?': {
|
|
'tag': 'plant-faq',
|
|
'answer': '''I love plants and have a garden of my own. I'll gladly
|
|
remove the mess for you.'''
|
|
},
|
|
'My yard is a mess, can you clean up the dog poop?': {
|
|
'tag': 'poop-scoop-faq',
|
|
'answer': 'I do offer animal poop clean up add-on yard'
|
|
}
|
|
}
|
|
|
|
def get_title():
|
|
return title
|
|
|
|
def get_content():
|
|
return content
|
|
|