Add 3 files
Browse files- README.md +6 -4
- index.html +208 -19
- prompts.txt +2 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: red
|
6 |
sdk: static
|
7 |
pinned: false
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: mpp5525
|
3 |
+
emoji: ⚛️
|
4 |
+
colorFrom: red
|
5 |
colorTo: red
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
tags:
|
9 |
+
- QwenSite
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,19 +1,208 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
+
<title>Merchant Processing Pros - Telehealth TUA vs Klarna</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<style>
|
9 |
+
.hero-section {
|
10 |
+
font-family: "Nunito Sans", sans-serif;
|
11 |
+
font-size: 16px;
|
12 |
+
font-weight: 300;
|
13 |
+
line-height: 24px;
|
14 |
+
word-spacing: 0px;
|
15 |
+
height: 347.2px;
|
16 |
+
width: 100%;
|
17 |
+
margin-top: -182px;
|
18 |
+
padding: 0 0 30px 0;
|
19 |
+
position: relative;
|
20 |
+
background-image: url('https://images.unsplash.com/photo-1581090763521-0ea28fe02f53?auto=format&fit=crop&w=1500&q=80');
|
21 |
+
background-size: cover;
|
22 |
+
background-position: center;
|
23 |
+
background-repeat: no-repeat;
|
24 |
+
color: white;
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
justify-content: center;
|
28 |
+
text-align: center;
|
29 |
+
transition: background 0.3s, border 0.3s;
|
30 |
+
}
|
31 |
+
|
32 |
+
.overlay-gradient {
|
33 |
+
position: absolute;
|
34 |
+
top: 0;
|
35 |
+
left: 0;
|
36 |
+
right: 0;
|
37 |
+
bottom: 0;
|
38 |
+
background: linear-gradient(135deg, rgba(107, 107, 107, 0.7), rgba(30, 41, 59, 0.8));
|
39 |
+
z-index: 10;
|
40 |
+
}
|
41 |
+
|
42 |
+
.hero-content {
|
43 |
+
position: relative;
|
44 |
+
z-index: 20;
|
45 |
+
}
|
46 |
+
|
47 |
+
.comparison-table th, .comparison-table td {
|
48 |
+
padding: 1rem;
|
49 |
+
border-bottom: 1px solid #e5e7eb;
|
50 |
+
}
|
51 |
+
|
52 |
+
.comparison-table tr:nth-child(even) {
|
53 |
+
background-color: #f9fafb;
|
54 |
+
}
|
55 |
+
</style>
|
56 |
+
</head>
|
57 |
+
<body class="bg-white text-gray-800 font-sans">
|
58 |
+
|
59 |
+
<!-- Navigation -->
|
60 |
+
<nav class="bg-white shadow-md fixed top-0 left-0 right-0 z-50">
|
61 |
+
<div class="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
|
62 |
+
<div class="text-2xl font-bold text-blue-600">Merchant Processing Pros</div>
|
63 |
+
<div class="space-x-6 hidden md:block">
|
64 |
+
<a href="#hero" class="text-gray-700 hover:text-blue-600">Home</a>
|
65 |
+
<a href="#compare" class="text-gray-700 hover:text-blue-600">Compare</a>
|
66 |
+
<a href="#cta" class="text-gray-700 hover:text-blue-600">Contact</a>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</nav>
|
70 |
+
|
71 |
+
<!-- Hero Section -->
|
72 |
+
<section id="hero" class="hero-section">
|
73 |
+
<div class="overlay-gradient"></div>
|
74 |
+
<div class="hero-content max-w-4xl mx-auto px-4">
|
75 |
+
<h1 class="text-4xl md:text-5xl font-extrabold leading-tight mb-4">
|
76 |
+
TUA Payment Plans for Telehealth Providers
|
77 |
+
</h1>
|
78 |
+
<p class="text-lg md:text-xl mb-6">
|
79 |
+
Tailored. Transparent. Affordable. Compare how our payment solutions outperform Klarna and other processors.
|
80 |
+
</p>
|
81 |
+
<a href="#compare" class="inline-block bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold shadow hover:bg-blue-50 transition">
|
82 |
+
Compare Now
|
83 |
+
</a>
|
84 |
+
</div>
|
85 |
+
</section>
|
86 |
+
|
87 |
+
<!-- Main Content -->
|
88 |
+
<main class="max-w-7xl mx-auto px-4 py-16">
|
89 |
+
<section class="mb-16">
|
90 |
+
<h2 class="text-3xl font-bold text-gray-900 mb-4 text-center">Why Telehealth Providers Choose TUA</h2>
|
91 |
+
<p class="text-lg text-gray-700 mb-6 text-center">
|
92 |
+
Telehealth providers need flexible, compliant, and secure payment options. Our TUA (Third-Party User Agreement) plans are designed with HIPAA compliance, low fees, and seamless integration in mind.
|
93 |
+
</p>
|
94 |
+
<ul class="grid grid-cols-1 md:grid-cols-2 gap-4 text-gray-700">
|
95 |
+
<li class="flex items-start space-x-2">
|
96 |
+
<span class="text-blue-600 font-bold">✓</span>
|
97 |
+
<span>Transparent pricing with no hidden fees</span>
|
98 |
+
</li>
|
99 |
+
<li class="flex items-start space-x-2">
|
100 |
+
<span class="text-blue-600 font-bold">✓</span>
|
101 |
+
<span>Custom payment schedules for recurring services</span>
|
102 |
+
</li>
|
103 |
+
<li class="flex items-start space-x-2">
|
104 |
+
<span class="text-blue-600 font-bold">✓</span>
|
105 |
+
<span>Secure, HIPAA-compliant transaction handling</span>
|
106 |
+
</li>
|
107 |
+
<li class="flex items-start space-x-2">
|
108 |
+
<span class="text-blue-600 font-bold">✓</span>
|
109 |
+
<span>Easy integration with existing telehealth platforms</span>
|
110 |
+
</li>
|
111 |
+
</ul>
|
112 |
+
</section>
|
113 |
+
|
114 |
+
<!-- Comparison Table -->
|
115 |
+
<section id="compare" class="mb-16">
|
116 |
+
<h2 class="text-3xl font-bold text-gray-900 mb-6 text-center">TUA vs Klarna vs Others</h2>
|
117 |
+
<div class="overflow-x-auto">
|
118 |
+
<table class="comparison-table w-full border-collapse text-left">
|
119 |
+
<thead class="bg-gray-100">
|
120 |
+
<tr>
|
121 |
+
<th class="p-4">Features</th>
|
122 |
+
<th class="p-4">TUA (Merchant Processing Pros)</th>
|
123 |
+
<th class="p-4">Klarna</th>
|
124 |
+
<th class="p-4">Other Processors</th>
|
125 |
+
</tr>
|
126 |
+
</thead>
|
127 |
+
<tbody>
|
128 |
+
<tr>
|
129 |
+
<td class="p-4 font-medium">Transparent Pricing</td>
|
130 |
+
<td class="p-4">✅ Yes</td>
|
131 |
+
<td class="p-4">❌ No</td>
|
132 |
+
<td class="p-4">❌ Varies</td>
|
133 |
+
</tr>
|
134 |
+
<tr>
|
135 |
+
<td class="p-4 font-medium">HIPAA Compliance</td>
|
136 |
+
<td class="p-4">✅ Yes</td>
|
137 |
+
<td class="p-4">❌ No</td>
|
138 |
+
<td class="p-4">❌ Not guaranteed</td>
|
139 |
+
</tr>
|
140 |
+
<tr>
|
141 |
+
<td class="p-4 font-medium">Recurring Payments</td>
|
142 |
+
<td class="p-4">✅ Built-in</td>
|
143 |
+
<td class="p-4">❌ Limited</td>
|
144 |
+
<td class="p-4">✅ Available</td>
|
145 |
+
</tr>
|
146 |
+
<tr>
|
147 |
+
<td class="p-4 font-medium">Monthly Fees</td>
|
148 |
+
<td class="p-4">✅ None</td>
|
149 |
+
<td class="p-4">❌ Yes</td>
|
150 |
+
<td class="p-4">❌ Yes</td>
|
151 |
+
</tr>
|
152 |
+
<tr>
|
153 |
+
<td class="p-4 font-medium">Customer Support</td>
|
154 |
+
<td class="p-4">✅ 24/7 Dedicated</td>
|
155 |
+
<td class="p-4">✅ Limited</td>
|
156 |
+
<td class="p-4">❌ Varies</td>
|
157 |
+
</tr>
|
158 |
+
<tr>
|
159 |
+
<td class="p-4 font-medium">Integration</td>
|
160 |
+
<td class="p-4">✅ Easy API</td>
|
161 |
+
<td class="p-4">✅ Medium</td>
|
162 |
+
<td class="p-4">❌ Often difficult</td>
|
163 |
+
</tr>
|
164 |
+
<tr>
|
165 |
+
<td class="p-4 font-medium">Approval Time</td>
|
166 |
+
<td class="p-4">✅ Same-day</td>
|
167 |
+
<td class="p-4">❌ 2-5 Days</td>
|
168 |
+
<td class="p-4">❌ 3-7 Days</td>
|
169 |
+
</tr>
|
170 |
+
</tbody>
|
171 |
+
</table>
|
172 |
+
</div>
|
173 |
+
</section>
|
174 |
+
|
175 |
+
<!-- CTA Section -->
|
176 |
+
<section id="cta" class="bg-blue-600 text-white rounded-lg p-8 md:p-12 text-center mb-16">
|
177 |
+
<h2 class="text-2xl md:text-3xl font-bold mb-4">Ready to Switch to a Better Payment Plan?</h2>
|
178 |
+
<p class="mb-6 text-lg">
|
179 |
+
Get started with TUA today and empower your telehealth practice with a payment solution that actually works for you.
|
180 |
+
</p>
|
181 |
+
<a href="#" class="inline-block bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold shadow hover:bg-blue-50 transition">
|
182 |
+
Contact Us
|
183 |
+
</a>
|
184 |
+
</section>
|
185 |
+
</main>
|
186 |
+
|
187 |
+
<!-- Footer -->
|
188 |
+
<footer class="bg-gray-900 text-white py-6 mt-16">
|
189 |
+
<div class="max-w-7xl mx-auto px-4 text-center">
|
190 |
+
<p>© 2025 Merchant Processing Pros. All rights reserved.</p>
|
191 |
+
</div>
|
192 |
+
</footer>
|
193 |
+
|
194 |
+
<!-- Smooth Scroll Script -->
|
195 |
+
<script>
|
196 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
197 |
+
anchor.addEventListener("click", function (e) {
|
198 |
+
e.preventDefault();
|
199 |
+
const target = document.querySelector(this.getAttribute("href"));
|
200 |
+
if (target) {
|
201 |
+
target.scrollIntoView({ behavior: "smooth" });
|
202 |
+
}
|
203 |
+
});
|
204 |
+
});
|
205 |
+
</script>
|
206 |
+
|
207 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-qwensite.hf.space/logo.svg" alt="qwensite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-qwensite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >QwenSite</a> - 🧬 <a href="https://enzostvs-qwensite.hf.space?remix=spwotton/mpp5525" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
208 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
landing page for merchant processing pros comparing their TUA payment plan option for telehealth providers to Klarna and others. use these style guidelines: /* Hero Section Styling */ .hero-section { font-family: "Nunito Sans", sans-serif; font-size: 16px; font-weight: 300; line-height: 24px; text-decoration: none solid rgb(107, 107, 107); word-spacing: 0px; background-color: #f3f5f800; /* Transparent with fallback? */ background-position: 0% 0%; background-color: #6b6b6b; /* Possible override or fallback */ height: 347.2px; width: 1520.8px; margin: -182px 0 0 0; padding: 0 0 30px 0; position: relative; top: 0px; bottom: 0px; right: 0px; left: 0px; display: block; transform: none; transition: background 0.3s, border 0.
|
2 |
+
just need you to fix the hero image. maybe something form unsplash like https://unsplash.com/photos/gray-htc-android-smartphone-cQ8FfVNvbew ... add some kind of overlay with gradient in modern react / node js style ...
|