From c877110f64248c72bc0c53bfaaaef7ec52b660de Mon Sep 17 00:00:00 2001 From: samuelmbabhazi Date: Wed, 21 Aug 2024 17:26:14 +0200 Subject: [PATCH 1/6] remplace hardcodelink in footer componnent --- apps/web/.env | 7 +++++++ apps/web/.env.sample | 6 ++++++ apps/web/components/layout/footer/footer.tsx | 8 ++++---- apps/web/lib/layout/footer.tsx | 11 ++++++++--- 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/apps/web/.env b/apps/web/.env index 184d39de3..fb81c4077 100644 --- a/apps/web/.env +++ b/apps/web/.env @@ -88,6 +88,13 @@ APP_NAME="Ever Teams" APP_SIGNATURE="Ever Teams" APP_LOGO_URL="https://app.ever.team/assets/ever-teams.png" + +#Footer links +NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" +NEXT_PUBLIC_EVER_PLATFORME_LINK="https://ever.co" +NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" +NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" + # Cookies NEXT_PUBLIC_COOKIE_DOMAINS=ever.team diff --git a/apps/web/.env.sample b/apps/web/.env.sample index 6f9f7dfb9..443daf525 100644 --- a/apps/web/.env.sample +++ b/apps/web/.env.sample @@ -50,6 +50,12 @@ APP_NAME='Ever Teams' APP_SIGNATURE='Ever Teams' APP_LOGO_URL='https://app.ever.team/assets/ever-teams.png' +#Footer links +NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" +NEXT_PUBLIC_EVER_PLATFORME_LINK="https://ever.co" +NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" +NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" + # Cookies NEXT_PUBLIC_COOKIE_DOMAINS=ever.team diff --git a/apps/web/components/layout/footer/footer.tsx b/apps/web/components/layout/footer/footer.tsx index a7875ce7e..b61174cea 100644 --- a/apps/web/components/layout/footer/footer.tsx +++ b/apps/web/components/layout/footer/footer.tsx @@ -9,7 +9,7 @@ const Footer = () => {
{t('layout.footer.COPY_RIGHT1', { date: new Date().getFullYear() })} {
by
{
{ {t('layout.footer.TERMS')}

{t('layout.footer.COPY_RIGHT1', { date: new Date().getFullYear() })}{' '} - {t('TITLE')} {t('layout.footer.BY')}{' '} - {t('layout.footer.COPY_RIGHT4')}{' '} + + {t('TITLE')} + {' '} + {t('layout.footer.BY')}{' '} + + {t('layout.footer.COPY_RIGHT4')} + {' '} {t('layout.footer.RIGHTS_RESERVED')}

- +
From 4035cac7c3c3095f113343176c76ee684d6b4ea0 Mon Sep 17 00:00:00 2001 From: samuelmbabhazi Date: Thu, 22 Aug 2024 11:46:28 +0200 Subject: [PATCH 2/6] fix Cspell error --- apps/web/.env | 2 +- apps/web/.env.sample | 2 +- apps/web/components/layout/footer/footer.tsx | 2 +- apps/web/lib/layout/footer.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/.env b/apps/web/.env index fb81c4077..dc7620fe4 100644 --- a/apps/web/.env +++ b/apps/web/.env @@ -91,7 +91,7 @@ APP_LOGO_URL="https://app.ever.team/assets/ever-teams.png" #Footer links NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" -NEXT_PUBLIC_EVER_PLATFORME_LINK="https://ever.co" +NEXT_PUBLIC_EVER_PLATFORM_LINK="https://ever.co" NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" diff --git a/apps/web/.env.sample b/apps/web/.env.sample index 443daf525..59b5b883d 100644 --- a/apps/web/.env.sample +++ b/apps/web/.env.sample @@ -52,7 +52,7 @@ APP_LOGO_URL='https://app.ever.team/assets/ever-teams.png' #Footer links NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" -NEXT_PUBLIC_EVER_PLATFORME_LINK="https://ever.co" +NEXT_PUBLIC_EVER_PLATFORM_LINK="https://ever.co" NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" diff --git a/apps/web/components/layout/footer/footer.tsx b/apps/web/components/layout/footer/footer.tsx index b61174cea..4aacb9cdd 100644 --- a/apps/web/components/layout/footer/footer.tsx +++ b/apps/web/components/layout/footer/footer.tsx @@ -18,7 +18,7 @@ const Footer = () => {
by
{' '} {t('layout.footer.BY')}{' '} - + {t('layout.footer.COPY_RIGHT4')} {' '} {t('layout.footer.RIGHTS_RESERVED')} From 21a91bd22c341add5e293909caf491725717c298 Mon Sep 17 00:00:00 2001 From: Ruslan Konviser Date: Sat, 24 Aug 2024 00:02:38 +0200 Subject: [PATCH 3/6] Update .env --- apps/web/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/.env b/apps/web/.env index dc7620fe4..947339c52 100644 --- a/apps/web/.env +++ b/apps/web/.env @@ -90,7 +90,7 @@ APP_LOGO_URL="https://app.ever.team/assets/ever-teams.png" #Footer links -NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" +NEXT_PUBLIC_EVER_TEAMS_LINK="https://ever.team" NEXT_PUBLIC_EVER_PLATFORM_LINK="https://ever.co" NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" From 84d337264597102105eb1f49fd9ebef3b6f21438 Mon Sep 17 00:00:00 2001 From: Ruslan Konviser Date: Sat, 24 Aug 2024 00:03:45 +0200 Subject: [PATCH 4/6] Update .env.sample --- apps/web/.env.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/.env.sample b/apps/web/.env.sample index 59b5b883d..8074779ff 100644 --- a/apps/web/.env.sample +++ b/apps/web/.env.sample @@ -51,7 +51,7 @@ APP_SIGNATURE='Ever Teams' APP_LOGO_URL='https://app.ever.team/assets/ever-teams.png' #Footer links -NEXT_PUBLIC_EVER_TEAMS_LINK="https://gauzy.team" +NEXT_PUBLIC_EVER_TEAMS_LINK="https://ever.team" NEXT_PUBLIC_EVER_PLATFORM_LINK="https://ever.co" NEXT_PUBLIC_EVER_LEGAL_TERM="https://demo.gauzy.co/#/pages/legal/terms" NEXT_PUBLIC_EVER_LEGAL_PRIVACY="https://demo.gauzy.co/#/pages/legal/privacy" From 5edc7b029653c1050c6d55b55128a654b523a4ae Mon Sep 17 00:00:00 2001 From: Ruslan Konviser Date: Sat, 24 Aug 2024 00:05:05 +0200 Subject: [PATCH 5/6] Update footer.tsx --- apps/web/components/layout/footer/footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/layout/footer/footer.tsx b/apps/web/components/layout/footer/footer.tsx index 4aacb9cdd..ad7a71a13 100644 --- a/apps/web/components/layout/footer/footer.tsx +++ b/apps/web/components/layout/footer/footer.tsx @@ -9,7 +9,7 @@ const Footer = () => {
{t('layout.footer.COPY_RIGHT1', { date: new Date().getFullYear() })} Date: Sat, 24 Aug 2024 00:06:06 +0200 Subject: [PATCH 6/6] Update footer.tsx --- apps/web/lib/layout/footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/lib/layout/footer.tsx b/apps/web/lib/layout/footer.tsx index 4900db838..637fc8762 100644 --- a/apps/web/lib/layout/footer.tsx +++ b/apps/web/lib/layout/footer.tsx @@ -24,7 +24,7 @@ export function Footer({ className }: IClassName) {