Results Page + Contacts

This commit is contained in:
2024-06-08 02:41:54 +01:00
parent cc73a8e3da
commit 601d5ac89d
23 changed files with 277 additions and 81 deletions
@@ -0,0 +1,34 @@
import Underline from "../../../assets/Underline.svg";
import ServiceCardContainer from "./ServiceCardContainer";
const Services = () => {
return (
<div className="header-text">
<h1>
We've got your{" "}
<span className="relative inline-block">
footprint{" "}
<img
src={Underline}
alt="underline"
className="absolute bottom-0 left-0"
/>
</span>{" "}
</h1>
<h1>
bullsh
<span className="bg-clip-text text-transparent bg-gradient-to-br from-gold-light to-gold-dark">
*
</span>
t covered
</h1>
<h2 className="sub-header-text">
Unlock the full potential of your business with our services.
</h2>
<ServiceCardContainer />
</div>
);
};
export default Services;