Skip to content

Commit 3708823

Browse files
committed
update partner page
1 parent aa10f79 commit 3708823

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

partner-us.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -313,24 +313,24 @@ <h3 class="" style="font-weight: 500">
313313
<div
314314
class="d-flex flex-column-reverse flex-md-row align-items-md-end justify-content-center align-items-center gap-5"
315315
>
316-
<div class="d-flex flex-column gap-md-2">
316+
<div class="d-flex flex-column justify-content-center align-items-md-end gap-md-2">
317317
<h3 class="" style="font-weight: 500">Higher Profit Margins</h3>
318-
<p>
318+
<p class="text-md-end">
319319
When you sell your products directly to consumers, you can
320320
eliminate the middleman and keep a higher precentage of the
321321
profits. This can help you increase your revenue and grow your
322322
business.
323323
</p>
324324
</div>
325-
<div class="d-block">
325+
<div class="d-flex w-100 justify-content-center align-items-center">
326326
<div class="partner_img position-relative">
327327
<img src="assets/profit.jpeg" alt="business" />
328328
</div>
329329
</div>
330330
</div>
331331

332332
<div class="d-flex flex-column flex-md-row align-items-md-end justify-content-center align-items-center gap-5">
333-
<div class="d-block">
333+
<div class="d-flex w-100 justify-content-center align-items-center">
334334
<div class="partner_img position-relative">
335335
<img src="assets/price control.webp" alt="business" />
336336
</div>
@@ -349,25 +349,25 @@ <h3 class="" style="font-weight: 500">Control over Pricing</h3>
349349
<div
350350
class="d-flex flex-column-reverse flex-md-row align-items-md-end justify-content-center align-items-center gap-5"
351351
>
352-
<div class="d-flex flex-column gap-md-2">
352+
<div class="d-flex flex-column justify-content-center align-items-md-end gap-md-2">
353353
<h3 class="" style="font-weight: 500">Flexibility</h3>
354-
<p>
354+
<p class="text-md-end">
355355
Selling your products at a farmers market or through other
356356
direct-to-consumer channels allows you to have more control over
357357
your schedule and workload. This can be especially beneficial for
358358
farmers who have unpredictable growing seasons or other
359359
responsibilities.
360360
</p>
361361
</div>
362-
<div class="d-block">
362+
<div class="d-flex w-100 justify-content-center align-items-center">
363363
<div class="partner_img position-relative">
364364
<img src="assets/flexibility.jpg" alt="business" />
365365
</div>
366366
</div>
367367
</div>
368368

369369
<div class="d-flex flex-column flex-md-row align-items-md-end justify-content-center align-items-center gap-5">
370-
<div class="d-block">
370+
<div class="d-flex w-100 justify-content-center align-items-center">
371371
<div class="partner_img position-relative">
372372
<img src="assets/New-market-opportunities.jpg" alt="business" />
373373
</div>

partner-us.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ window.onscroll = function() {
193193
}
194194

195195

196-
const form = document.querySelector('.newsLetterForm');
196+
const forms = document.querySelector('.newsLetterForm');
197197
const emailInput = form.querySelector('input[type="email"]');
198198

199-
form.addEventListener('submit', (event) => {
199+
forms.addEventListener('submit', (event) => {
200200
event.preventDefault();
201201
const email = emailInput.value;
202202
localStorage.setItem('newsletterEmail', email);

0 commit comments

Comments
 (0)