From 3ee54504cc1c67bcdb997ea632e079ae7d06aa50 Mon Sep 17 00:00:00 2001 From: Fernando Videira Date: Mon, 24 Jun 2024 12:38:46 +0100 Subject: [PATCH] Fixed Titles --- public/locales/common/en.json | 2 +- public/locales/common/pt.json | 2 +- src/Components/Card.tsx | 2 +- src/index.css | 8 ++------ 4 files changed, 5 insertions(+), 9 deletions(-) diff --git a/public/locales/common/en.json b/public/locales/common/en.json index 1a303c9..8ed576a 100644 --- a/public/locales/common/en.json +++ b/public/locales/common/en.json @@ -20,7 +20,7 @@ "heading": { "part1": "Unlock The Full ", "part2": "Potential", - "part3": "Of Your Business" + "part3": "Of Your Business!" }, "cards": { "marketing": { diff --git a/public/locales/common/pt.json b/public/locales/common/pt.json index c150881..21978f0 100644 --- a/public/locales/common/pt.json +++ b/public/locales/common/pt.json @@ -20,7 +20,7 @@ "heading": { "part1": "Desbloqueia Todo O ", "part2": "Potencial", - "part3": "Do Teu Negócio" + "part3": "Do Teu Negócio!" }, "cards": { "marketing": { diff --git a/src/Components/Card.tsx b/src/Components/Card.tsx index 9eacc9e..6d7efaf 100644 --- a/src/Components/Card.tsx +++ b/src/Components/Card.tsx @@ -13,7 +13,7 @@ const Card = ({ title, description, image }: IProps) => {

{title}

-

+

{description.split("\n").map((line, i) => ( {line} diff --git a/src/index.css b/src/index.css index b96dba6..c6fa923 100644 --- a/src/index.css +++ b/src/index.css @@ -50,19 +50,15 @@ body { } .results-card-content { - @apply mb-2 mt-3 italic text-xl xl:text-3xl font-medium text-gray-300; -} - -.results-card-content-pt { @apply mb-2 mt-3 italic text-lg xl:text-2xl font-medium text-gray-300; } .footer-text { - @apply text-gray-400 font-medium + @apply text-gray-400 font-medium text-xs md:text-base } .footer-text-pt { - @apply text-gray-400 font-medium text-xs + @apply text-gray-400 font-medium text-xs md:text-base } @keyframes fadeEffect {