31 lines
767 B
TypeScript
31 lines
767 B
TypeScript
import Link from "next/link";
|
|
import Image from "next/image";
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
{/* HERO */}
|
|
<section className="ux-project-hero">
|
|
<div className="container">
|
|
<div className="ux-project-content text-center">
|
|
<h1 className="ux-project-title" data-aos="fade-up">
|
|
About AAideA.
|
|
</h1>
|
|
<p
|
|
className="ux-project-subtitle"
|
|
data-aos="fade-up"
|
|
data-aos-delay="120"
|
|
>
|
|
We build digital homes, brand systems, and scalable content
|
|
<br />
|
|
engines designed for clarity and growth.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</>
|
|
);
|
|
}
|