36 lines
1016 B
TypeScript
36 lines
1016 B
TypeScript
export const testimonials = [
|
|
{
|
|
quote:
|
|
"Great guy to deal with. Spent a few hours back forth trying to figure out a problem. Got everything up and running.",
|
|
author: "Happy Customer",
|
|
},
|
|
{
|
|
quote:
|
|
"Daniel was an absolute godsend! So helpful and just a great guy. Thanks so much for all your help!",
|
|
author: "Satisfied User",
|
|
},
|
|
{
|
|
quote:
|
|
"The boxes work great - no lagging and way more TV than I've ever had. Great service, very helpful. 100% recommend.",
|
|
author: "Long-time Client",
|
|
},
|
|
]
|
|
|
|
export const features = [
|
|
{
|
|
title: "Only $20/month",
|
|
description:
|
|
"No hidden fees. No surprises. Just straightforward pricing for unlimited entertainment.",
|
|
},
|
|
{
|
|
title: "Tech Support Included",
|
|
description:
|
|
"No extra cost for tech support. We're here to help whenever you need us.",
|
|
},
|
|
{
|
|
title: "Vancouver Island Based",
|
|
description:
|
|
"Trusted by customers across Canada and beyond. Local service, national reach.",
|
|
},
|
|
]
|