Files
2026-04-29 00:29:14 +08:00

57 lines
2.5 KiB
TypeScript
Raw Permalink 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.
import NewsletterForm from "@/components/NewsletterForm"
export default function CtaSection() {
return (
<section className="cta-section v4">
<div className="w-layout-blockcontainer container-default w-container">
<div data-w-id="43e48b1f-85e7-b846-9296-3a85fcb30cd3" className="cta-v4-content-wrapper">
<div className="cta-v4-content-top">
<div className="subtitle dark-mode">Newsletter</div>
<div className="mg-top-4x-extra-small">
<h2 className="text-titles-dm">
DAL Code
</h2>
</div>
<div className="mg-top-4x-extra-small">
<p className="text-paragraph-dm">
线
</p>
</div>
</div>
<div className="corner-gradient-container">
<div className="cta-v4-content-bottom">
<div className="cta-v4-form-wrapper">
<NewsletterForm variant="dark" />
<div className="corner-gradient-wrapper hidden-on-tablet">
<div className="corner-gradient-vertical small---dark-mode top-left">
</div>
</div>
</div>
<div className="check-item-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 17 16" fill="none" className="squared-icon text-titles-dm">
<path d="M3.62891 8.00429L6.87307 11.2485L13.3711 4.75" stroke="currentColor" strokeWidth="1.5">
</path>
</svg>
<div className="text-color-neutral-500">
1
</div>
</div>
</div>
<div className="corner-gradient-wrapper hidden-on-tablet">
<div className="corner-gradient-horizontal small---dark-mode bottom-left">
</div>
<div className="corner-gradient-horizontal small---dark-mode bottom-right">
</div>
<div className="corner-gradient-horizontal small---dark-mode top-left">
</div>
<div className="corner-gradient-horizontal small---dark-mode top-right">
</div>
</div>
</div>
</div>
</div>
</section>
)
}