50 lines
2.2 KiB
TypeScript
50 lines
2.2 KiB
TypeScript
import Link from "next/link";
|
|
|
|
export default function Privacy() {
|
|
return (
|
|
<>
|
|
<section className="ux-project-hero">
|
|
<div className="container">
|
|
<div className="ux-project-content text-center">
|
|
<h1 className="ux-project-title" data-aos="fade-up" data-aos-duration="1000">Privacy Policy.</h1>
|
|
<p className="ux-project-subtitle" data-aos="fade-up" data-aos-delay="200" data-aos-duration="1000">
|
|
How we collect, use, and protect your information.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section className="ux-about-section">
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-9 mx-auto">
|
|
<h2 className="ux-main-heading mb-4" data-aos="fade-up" data-aos-duration="900">Information We Collect</h2>
|
|
<p className="ux-card-text" data-aos="fade-up" data-aos-delay="100" data-aos-duration="900">
|
|
We collect information you provide directly through our project intake form,
|
|
including name, company, email, and project details.
|
|
</p>
|
|
|
|
<h4 className="ux-card-title mt-5" data-aos="fade-up" data-aos-duration="900">How We Use It</h4>
|
|
<p className="ux-card-text" data-aos="fade-up" data-aos-delay="100" data-aos-duration="900">
|
|
We use the information to respond to inquiries, scope projects, and improve
|
|
our services. We do not sell your data.
|
|
</p>
|
|
|
|
<h4 className="ux-card-title mt-5" data-aos="fade-up" data-aos-duration="900">Cookies</h4>
|
|
<p className="ux-card-text" data-aos="fade-up" data-aos-delay="100" data-aos-duration="900">
|
|
We use minimal first-party cookies for site analytics and session continuity.
|
|
</p>
|
|
|
|
<h4 className="ux-card-title mt-5" data-aos="fade-up" data-aos-duration="900">Contact</h4>
|
|
<p className="ux-card-text" data-aos="fade-up" data-aos-delay="100" data-aos-duration="900">
|
|
For privacy questions, please <Link href="/contact" className="ux-link">contact us</Link>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|