Skip to content

Commit 4670747

Browse files
Improve text in landing page
1 parent 2ef2766 commit 4670747

1 file changed

Lines changed: 24 additions & 23 deletions

File tree

web/src/app/page.tsx

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -134,27 +134,6 @@ export default function Home() {
134134
Contribution Accounting Tokens (CATs)
135135
</motion.p>
136136

137-
<motion.div
138-
className="flex items-center justify-center space-x-6 mb-12"
139-
initial={{ y: 20, opacity: 0 }}
140-
animate={{ y: 0, opacity: 1 }}
141-
transition={{ duration: 0.8, delay: 0.6 }}
142-
>
143-
{contact_links.map(({ href, icon }, index) => (
144-
<motion.a
145-
key={index}
146-
href={href}
147-
target="_blank"
148-
rel="noopener noreferrer"
149-
className="text-3xl text-gray-600 dark:text-gray-400 hover:text-blue-600 dark:hover:text-blue-400 transition-colors duration-300"
150-
whileHover={{ scale: 1.2 }}
151-
whileTap={{ scale: 0.9 }}
152-
>
153-
<FontAwesomeIcon icon={icon} />
154-
</motion.a>
155-
))}
156-
</motion.div>
157-
158137
<motion.div
159138
className="flex flex-wrap justify-center gap-4"
160139
initial={{ y: 20, opacity: 0 }}
@@ -198,6 +177,28 @@ export default function Home() {
198177
</>
199178
)}
200179
</motion.div>
180+
181+
<motion.div
182+
className="flex items-center justify-center space-x-6 mb-12"
183+
initial={{ y: 20, opacity: 0 }}
184+
animate={{ y: 0, opacity: 1 }}
185+
transition={{ duration: 0.8, delay: 0.6 }}
186+
>
187+
{contact_links.map(({ href, icon }, index) => (
188+
<motion.a
189+
key={index}
190+
href={href}
191+
target="_blank"
192+
rel="noopener noreferrer"
193+
className="text-3xl text-gray-600 dark:text-gray-400 hover:text-blue-600 dark:hover:text-blue-400 transition-colors duration-300"
194+
whileHover={{ scale: 1.2 }}
195+
whileTap={{ scale: 0.9 }}
196+
>
197+
<FontAwesomeIcon icon={icon} />
198+
</motion.a>
199+
))}
200+
</motion.div>
201+
201202
</motion.div>
202203
</motion.section>
203204

@@ -261,7 +262,7 @@ export default function Home() {
261262
{
262263
step: "3",
263264
title: "Token Transfers",
264-
detail: "Initially, tokens are only transferrable between addresses that already hold them, preventing speculation while building your core contributor community. Enable unrestricted token transfers at any time when ready.",
265+
detail: "Initially tokens are only transferrable between addresses that already hold them, preventing speculation. Enable unrestricted token transfers at any time when the project is ready.",
265266
gradient: "from-indigo-500 to-indigo-600 dark:from-yellow-600 dark:to-yellow-700"
266267
}
267268
].map((step, index) => (
@@ -434,7 +435,7 @@ export default function Home() {
434435
transition={{ duration: 0.8 }}
435436
viewport={{ once: true }}
436437
>
437-
About Us
438+
Clowder's Team
438439
</motion.h2>
439440
<div className="grid grid-cols-1 md:grid-cols-2 gap-16 items-center">
440441
<motion.div

0 commit comments

Comments
 (0)