You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content:"Engage with a diverse community of developers, designers, and enthusiasts passionate about creating impactful software.",
16
-
14
+
title:"Community Collaboration",
15
+
content:"Engage with a diverse community of developers, designers, and enthusiasts passionate about creating impactful software.",
16
+
17
17
},
18
18
{
19
-
title:"Transparency and Accessibility",
20
-
content:"Explore endless possibilities for innovation by harnessing the collective creativity of a global network of contributors",
21
-
19
+
title:"Transparency and Accessibility",
20
+
content:"Explore endless possibilities for innovation by harnessing the collective creativity of a global network of contributors",
21
+
22
22
},
23
23
{
24
-
title:"Innovation and Creativity",
25
-
content:"Explore endless possibilities for innovation by harnessing the collective creativity of a global network of contributors",
26
-
24
+
title:"Innovation and Creativity",
25
+
content:"Explore endless possibilities for innovation by harnessing the collective creativity of a global network of contributors",
26
+
27
27
},
28
28
{
29
-
title:"Flexibility and Customization",
30
-
content:"Customize and adapt open-source projects to suit your specific needs, empowering you to build solutions tailored to your requirements.",
29
+
title:"Flexibility and Customization",
30
+
content:"Customize and adapt open-source projects to suit your specific needs, empowering you to build solutions tailored to your requirements.",
31
31
},
32
32
{
33
-
title:"Learning and Skill Development",
34
-
content:"Accelerate your learning and skill development through hands-on collaboration, mentorship, and continuous feedback within the open-source community.",
33
+
title:"Learning and Skill Development",
34
+
content:"Accelerate your learning and skill development through hands-on collaboration, mentorship, and continuous feedback within the open-source community.",
35
35
},
36
36
{
37
-
title:"Global Impact",
38
-
content:"Make a meaningful impact on a global scale by contributing to projects that address real-world challenges and improve the lives of people everywhere.",
37
+
title:"Global Impact",
38
+
content:"Make a meaningful impact on a global scale by contributing to projects that address real-world challenges and improve the lives of people everywhere.",
39
39
},
40
-
40
+
41
41
42
42
]
43
43
44
44
constHome=(props)=>{
45
+
consttext="Bitbox Community Cornerstone";
45
46
return(
46
47
<div>
47
48
{/* Landing Page Section */}
@@ -61,7 +62,7 @@ const Home = (props) => {
61
62
At BitBox, we simplify version control and collaboration by providing a user-friendly platform for developers. Whether you’re a solo programmer or part of a large team, BitBox offers intuitive tools to manage your projects efficiently. Experience fast, reliable performance and seamless integration with modern development workflows. With BitBox, managing and sharing your code becomes a smooth process, enabling you to focus on building better software.
62
63
</div>
63
64
</div>
64
-
<motion.div
65
+
<motion.div
65
66
className="content-right"
66
67
initial={{opacity: 0,scale: 0.8}}// Starting state of animation
67
68
whileInView={{opacity: 1,scale: 1}}// Animation on scroll
@@ -91,25 +92,51 @@ const Home = (props) => {
91
92
transition={{duration: 0.6}}
92
93
viewport={{once: true}}
93
94
>
94
-
Bitbox Community Cornerstone
95
+
{text.split('').map((char,index)=>(
96
+
<motion.span
97
+
key={index}// Unique key for each character
98
+
initial={{opacity: 0,y: 20}}// Start with invisible and slightly lower
99
+
whileInView={{opacity: 1,y: 0}}// Animate to visible and original position
100
+
transition={{duration: 0.6,delay: index*0.1}}// Add delay for staggered effect
101
+
viewport={{once: true}}// Animation triggers once when in view
0 commit comments