Skip to content

Commit 2ce2cfa

Browse files
committed
feat: update hero section text and improve landing page imports
- Changed the hero title to "Bringing Regenerative Actions Onchain" and updated the description to reflect a focus on local hubs. - Standardized import statements in the Landing component for better clarity and organization.
1 parent c53303c commit 2ce2cfa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/client/src/components/Layout/Hero.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ export const Hero: React.FC<HeroProps> = () => {
2929
// onSubmit={handleSubscribe}
3030
className="flex-1 flex flex-col gap-2 items-center lg:items-start lg:justify-center pt-[10vh] lg:pt-0 text-center lg:text-left"
3131
>
32-
<h2 className="font-bold lg:text-8xl lg:tracking-wide text-[#367D42] mb-2">
32+
<h2 className="font-bold lg:text-7xl lg:tracking-wide text-[#367D42] mb-2">
3333
{intl.formatMessage({
3434
id: "app.hero.title",
35-
defaultMessage: "Bringing Biodiversity Onchain",
35+
defaultMessage: "Bringing Regenerative Actions Onchain",
3636
})}
3737
</h2>
3838
<p className="text-xl lg:text-2xl">
3939
{intl.formatMessage({
4040
id: "app.hero.description",
4141
defaultMessage:
42-
"Green Goods measures, tracks, and rewards the impact on gardens with a simple progressive web app.",
42+
"Green Goods measures, tracks, and rewards the impact on local hubs with a simple progressive web app.",
4343
})}
4444
<span className="font-bold text-2xl hidden sm:flex text-[#367D42]">
4545
{intl.formatMessage({

packages/client/src/views/Landing/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { toastService } from "@green-goods/shared";
22
import { useApp } from "@green-goods/shared/providers/App";
33
import React, { useState } from "react";
4-
import { Footer, Header } from "@/components/Navigation";
54
import { Hero } from "@/components/Layout";
5+
import { Footer, Header } from "@/components/Navigation";
66

77
type LandingProps = {};
88

packages/shared/src/i18n/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"app.garden.work.status.rejected": "Rejected",
127127
"app.garden.work.title": "Work",
128128
"app.hero.cta": "Open the website on your phone to get started!",
129-
"app.hero.description": "Green Goods measures, tracks, and rewards the impact on gardens with a simple progressive web app.",
129+
"app.hero.description": "Green Goods measures, tracks, and rewards the impact on local hubs with a simple progressive web app.",
130130
"app.hero.open": "Open App",
131131
"app.hero.install": "Install App",
132132
"app.hero.install.android": "Tap the 3 dots menu button in the bottom right and press <b>Add to Home Screen</b>",
@@ -139,7 +139,7 @@
139139
"app.hero.install.other": "Tap the menu button and press <b>Add to Home Screen</b>",
140140
"app.hero.install.subtitle": "Add to your home screen for the best experience.",
141141
"app.hero.install.title": "Install Green Goods",
142-
"app.hero.title": "Bringing Biodiversity Onchain",
142+
"app.hero.title": "Bringing Regenerative Actions Onchain",
143143
"app.home": "Home",
144144
"app.home.founded": "Founded",
145145
"app.home.location": "Location",

0 commit comments

Comments
 (0)