2026-04-23 10:15:31 +05:30

20 lines
938 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function Newsletter() {
return (
<section className="newsletter-section">
<div className="newsletter-inner reveal">
<div className="section-eyebrow center">Stay in the loop</div>
<h2 className="newsletter-h2">Product Updates &<br /><span>Contractor Deals.</span></h2>
<p className="newsletter-sub">
New product arrivals, seasonal promotions, and industry tips delivered to your inbox.<br />
No spam, unsubscribe anytime.
</p>
<form className="newsletter-form" action="#" method="POST">
<input type="email" className="newsletter-input" placeholder="Enter your email address" required />
<button type="submit" className="newsletter-btn">Subscribe </button>
</form>
<div className="newsletter-note">Join contractors and builders across Ontario · 16 emails per month</div>
</div>
</section>
);
}