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,26 @@
import Card from "./Card";
const CardContainer = () => {
return (
<div className="mt-10 flex-col h-full lg:grid lg:grid-cols-2 lg:gap-10 px-10 lg:px-40 2xl:px-96 1920:margin-calc">
<Card
title="GUARANTED"
description={`We only win if you win!\nThats the basis for a good\npartnership.\nYou wont carry all the risk,\nwell share it.`}
/>
<Card
title="RESULTS"
description={`Our first priority is to get\nyou results.\n\nLess talk, more walk.`}
/>
<Card
title="LOCAL"
description={`Were not a anonymous call\ncenter. Were a local\ncompany, so youll be able to\nreach us when you need us`}
/>
<Card
title="SPECIALIZED"
description={`Jack of all trades... master\nof none Specialization\nworks. We work with\nindustries we know, so we\ncan guarantee results.`}
/>
</div>
);
};
export default CardContainer;