import { useEffect, useRef } from "react"; import Link from "next/link.js"; import Award from "../../../public/assets/imgs/about/award.png"; import Image from "next/image.js"; import animationWordCome from "@/lib/utils/animationWordCome"; const AboutHero = () => { const wordAnim = useRef(); useEffect(() => { animationWordCome(wordAnim.current); }, []); return ( <>

We’re a remote software & design agency based in Egypt , working with clients around the world.

Check Our
Services

{ "As passionate creators, we love building products and solving problems while giving you all our knowledge and expertise." }

{/*
Best Studio Award
*/}
); }; export default AboutHero;