1
+ import React from 'react' ;
2
+ import "../styles/AboutUs.css" ;
3
+ import { Box , VStack , Heading , Text } from "@chakra-ui/react" ;
4
+ import { Separator } from "@chakra-ui/react"
5
+ import { FaTools , FaShareAlt , FaSearch , FaRedo } from "react-icons/fa" ; // Example icons
6
+ import { Grid , GridItem , Icon } from "@chakra-ui/react" ;
7
+
8
+
9
+ const AboutUs = ( ) => {
10
+ const values = [
11
+ {
12
+ title : "Build" ,
13
+ description :
14
+ "Lay the foundation by creating innovative projects that solve real-world problems and inspire learning." ,
15
+ icon : FaTools ,
16
+ } ,
17
+ {
18
+ title : "Share" ,
19
+ description :
20
+ "Exchange ideas and solutions by sharing knowledge and projects with the community to foster collaboration." ,
21
+ icon : FaShareAlt ,
22
+ } ,
23
+ {
24
+ title : "Review" ,
25
+ description :
26
+ "Provide constructive feedback to refine ideas and approaches, ensuring quality and innovation." ,
27
+ icon : FaSearch ,
28
+ } ,
29
+ {
30
+ title : "Repeat" ,
31
+ description :
32
+ "Iterate on processes and projects to continuously improve and achieve even greater results." ,
33
+ icon : FaRedo ,
34
+ } ,
35
+ ] ;
36
+
37
+
38
+
39
+ return (
40
+ < div className = 'about-us-container' >
41
+ < p className = 'about-us-header' > About Us</ p >
42
+ < p className = 'about-us-header-below' > Build. Share. Review. Repeat.</ p >
43
+ < div className = 'about-us-img-container' >
44
+ < img className = "about-us-img" src = "./images/hh-team8.png" > </ img >
45
+ </ div >
46
+ < div className = 'about-us-text-area' >
47
+ < Text fontSize = "lg" marginBottom = "4" marginTop = '40px' >
48
+ Welcome to our collaborative project-sharing platform! Our mission is
49
+ to empower developers, designers, and creatives to showcase their
50
+ work, get feedback, and inspire others in the community.
51
+ </ Text >
52
+
53
+ < Box textAlign = "center" py = { 5 } px = { 4 } className = 'grid-box' >
54
+ < Heading className = 'our-values-header' >
55
+ Our Values
56
+ </ Heading >
57
+ < Text maxW = "700px" mx = "auto" mb = { 10 } color = "gray.500" fontSize = '16px' className = 'our-values-below' >
58
+ Our process revolves around these core principles: Build, Share, Review, and Repeat.
59
+ </ Text >
60
+ < Grid
61
+ templateColumns = { { base : "1fr" , lg : "repeat(2, 1fr)" } }
62
+ gap = { 6 }
63
+ >
64
+ { values . map ( ( value , index ) => (
65
+ < GridItem
66
+ key = { index }
67
+ bg = "blue.50"
68
+ borderRadius = "22px"
69
+ p = { 6 }
70
+ boxShadow = "md"
71
+ transition = "all 0.3s"
72
+ _hover = { { transform : "translateY(-5px)" , boxShadow : "lg" } }
73
+ >
74
+ < VStack spacing = { 4 } align = "center" >
75
+ < Icon fontSize = "4xl" color = "blue.500" >
76
+ < value . icon />
77
+ </ Icon >
78
+ < Heading as = "h3" size = "md" color = "blue.700" >
79
+ { value . title }
80
+ </ Heading >
81
+ < Text color = "gray.600" textAlign = { { lg : "left" } } fontSize = '18px' lineHeight = '30px' className = 'box-text' >
82
+ { value . description }
83
+ </ Text >
84
+ </ VStack >
85
+ </ GridItem >
86
+ ) ) }
87
+ </ Grid >
88
+ </ Box >
89
+ < Text fontSize = "lg" marginBottom = "4" >
90
+ With features like project discovery, real-time commenting, and
91
+ dynamic engagement, we aim to create a vibrant ecosystem where ideas
92
+ thrive and collaborations flourish.
93
+ </ Text >
94
+ < Text fontSize = "lg" marginBottom = "8" >
95
+ Our team is passionate about building tools that connect people and
96
+ drive innovation. Join us in making this platform a hub for creative
97
+ expression and growth.
98
+ </ Text >
99
+ < Separator size = "xs" marginBottom = '20px' />
100
+ < Text fontSize = "lg" marginBottom = "8" >
101
+ Ready to make an impact? Join us today, share your project, and connect with like-minded creators shaping the future! 🚀
102
+ </ Text >
103
+ </ div >
104
+ < footer >
105
+ < img className = "ctd-logo" src = "./images/ctd-logo.png" alt = "CTD Logo" />
106
+ </ footer >
107
+ </ div >
108
+ )
109
+ }
110
+ export default AboutUs ;
0 commit comments