Updated CSS styles

This commit is contained in:
2026-05-01 14:32:31 +05:30
parent cc65a42f89
commit 071180acff
25 changed files with 877 additions and 745 deletions
+55
View File
@@ -0,0 +1,55 @@
import Link from "next/link";
export default function Contact() {
return (
<>
<section className="ux-project-hero">
<div className="container">
<div className="ux-project-content text-center">
<h1 className="ux-project-title">Get in touch.</h1>
<p className="ux-project-subtitle">
Tell us about your project. We respond within one business day.
</p>
<div className="ux-breadcrumb-wrap">
<Link href="/">Home</Link>
<span>/</span>
<p>Contact</p>
</div>
</div>
</div>
</section>
<section className="ux-about-section">
<div className="container">
<div className="row">
<div className="col-lg-9 mx-auto">
<h4 className="ux-card-title">Email</h4>
<p className="ux-card-text">
<a href="mailto:info@aaidea.com" className="ux-link">info@aaidea.com</a>
</p>
<h4 className="ux-card-title mt-5">Office</h4>
<p className="ux-card-text">
410 Sandtown, California 94001, USA
</p>
<h4 className="ux-card-title mt-5">Start a project</h4>
<p className="ux-card-text">
Ready to scope? Use our{" "}
<Link href="/start_project" className="ux-link">project intake form</Link>{" "}
&mdash; it takes about 3 minutes and we&apos;ll respond with next steps.
</p>
<h4 className="ux-card-title mt-5">Other resources</h4>
<p className="ux-card-text">
Read about our <Link href="/process" className="ux-link">process</Link>,
explore <Link href="/services" className="ux-link">services</Link>,
or check the <Link href="/faq" className="ux-link">FAQ</Link>.
</p>
</div>
</div>
</div>
</section>
</>
);
}