From 398153b1fdb14342a38acfb8654fc58dc12614eb Mon Sep 17 00:00:00 2001 From: Jan Hendrik Scheufen Date: Wed, 23 Oct 2024 20:36:37 -0400 Subject: [PATCH] Last wording changes on quilombo landing page Signed-off-by: Jan Hendrik Scheufen --- packages/quilombo/app/page.tsx | 38 +++++++++++++++++-------- packages/quilombo/config/environment.ts | 6 ++++ packages/www/config/site.ts | 1 - 3 files changed, 32 insertions(+), 13 deletions(-) diff --git a/packages/quilombo/app/page.tsx b/packages/quilombo/app/page.tsx index a741878..53e33a5 100755 --- a/packages/quilombo/app/page.tsx +++ b/packages/quilombo/app/page.tsx @@ -6,6 +6,7 @@ import Link from 'next/link'; import RippleBackground from '@/components/RippleBackground'; import { PATHS } from '@/config/constants'; +import ENV from '@/config/environment'; export default function Home() { const { data: session } = useSession(); @@ -19,17 +20,26 @@ export default function Home() {

Welcome to Quilombo

The first app specifically made for Capoeira

- We are capoeiristas from different corners of the world and from different schools who come together to - build our own tools instead of relying on social media platforms that don't serve our needs. + Quilombo is a registry application for Capoeiristas and Capoeira groups. By making profiles and + registering groups, users contribute to creating a map of the Capoeira world. +
+ But there is more ... Quilombo is also your portal to everything we're creating. Send digital Axé to + your friends and participate in the governance of the platform.

- Quilombo starts with a simple directory of capoeira groups and their members, but it can grow into a place - where we can share our events, pay for classes, and support each other in many ways. + If you are in any way involved in Capoeira, we invite you to join us on this journey. This app is free! + Create your profile, join or register a group, and help populate the geneology tree of Capoeira.

- If you are in any way involved in Capoeira, we invite you to join us on this journey. This app is free! - Make an account, create your profile, join or register a group, and help populate the{' '} - geneology tree of Capoeira. + This is a community-driven app. We are building it together and we need your help! To get involved send an{' '} + + email + {' '} + or join our{' '} + + group chat + {' '} + on Discord.

@@ -44,16 +54,20 @@ export default function Home() { ) : ( )}
-
- Powered by - AXÉ DAO -
+ ); } diff --git a/packages/quilombo/config/environment.ts b/packages/quilombo/config/environment.ts index 109542b..dd04384 100755 --- a/packages/quilombo/config/environment.ts +++ b/packages/quilombo/config/environment.ts @@ -18,6 +18,9 @@ type ConfigType = { pinataJwt: string; databaseUrl: string; nextAuthSecret: string; + axeDaoSiteUrl: string; + axeDaoEmail: string; + axeDaoDiscord: string; }; const envMode = process.env.NEXT_PUBLIC_APP_ENV?.toLowerCase(); @@ -75,6 +78,9 @@ const ENV: ConfigType = { pinataJwt: isServer ? required(process.env.PINATA_JWT, 'PINATA_JWT') : '', databaseUrl: isServer ? required(process.env.DATABASE_URL, 'DATABASE_URL') : '', nextAuthSecret: isServer ? required(process.env.NEXTAUTH_SECRET, 'NEXTAUTH_SECRET') : '', + axeDaoSiteUrl: required(process.env.NEXT_PUBLIC_AXE_DAO_SITE_URL, 'NEXT_PUBLIC_AXE_DAO_SITE_URL'), + axeDaoEmail: required(process.env.NEXT_PUBLIC_AXE_DAO_EMAIL, 'NEXT_PUBLIC_AXE_DAO_EMAIL'), + axeDaoDiscord: required(process.env.NEXT_PUBLIC_AXE_DAO_DISCORD, 'NEXT_PUBLIC_AXE_DAO_DISCORD'), }; function required(value: string | undefined, name: string): string { diff --git a/packages/www/config/site.ts b/packages/www/config/site.ts index 1f636f2..edd609b 100644 --- a/packages/www/config/site.ts +++ b/packages/www/config/site.ts @@ -19,7 +19,6 @@ export const siteConfig = { ], links: { github: 'https://github.com/j-h-scheufen/axedao', - // twitter: '', discord: 'https://discord.gg/79HKsQgfD4', email: 'axe-dao@protonmail.com', },