Files
doormile_react/src/components/sections/AboutCTA.tsx
2026-06-03 19:19:56 +05:30

31 lines
1.1 KiB
TypeScript

import React from "react";
import Link from "next/link";
export default function AboutCTA() {
return (
<div className="we-container">
<div className="we-cta reveal">
<div className="we-cta-inner">
<h2 className="we-cta-title">
Ready to Start<br />
<em>Your Journey?</em>
</h2>
<p className="we-cta-sub">
Join our Women Entrepreneurship program and become part of <br />
India&apos;s fastest-growing logistics network.
</p>
<div className="we-cta-btns">
<Link href="/contact" className="btn-we-primary" style={{ textDecoration: "none" }}>
Apply Now
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round" style={{ marginLeft: "8px", display: "inline-block", verticalAlign: "middle" }}>
<line x1="5" y1="12" x2="19" y2="12" />
<polyline points="12 5 19 12 12 19" />
</svg>
</Link>
</div>
</div>
</div>
</div>
);
}