Skip to content

Commit fd616c7

Browse files
committed
feat: updated faqs
1 parent a4eb581 commit fd616c7

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/components/SectionTitle/TitleSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const StyledTitle = styled.h1`
4444
}
4545
`;
4646

47-
const StyledSubTitle = styled.h3`
47+
const StyledSubTitle = styled.h4`
4848
color: ${(props) => props.color ?? Color.WHITE};
4949
margin-top: 1rem;
5050
@media (min-width: 480px) {

src/views/Home/components/Faqs/Faqs.style.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ export const StyledFaqCard = styled.div`
9595
`;
9696
export const StyledFaqImageContainer = styled.div.withConfig({
9797
shouldForwardProp: (prop) => !["padding"].includes(prop),
98-
})<{ padding: string }>`
98+
}) <{ padding: string }>`
9999
position: relative;
100100
@media (min-width: 800px) {
101101
height: auto;
102102
103103
padding: ${({ padding }) => {
104-
return padding;
105-
}};
104+
return padding;
105+
}};
106106
}
107107
`;
108108
export const StyledFaqImage = styled(motion.img)`
@@ -121,21 +121,21 @@ export const StyledFaqImage = styled(motion.img)`
121121
display: none;
122122
}
123123
`;
124-
export const StyledFaqInfo = styled(motion.div)<{ align: string }>`
124+
export const StyledFaqInfo = styled(motion.div) <{ align: string }>`
125125
display: flex;
126126
flex-direction: column;
127127
color: ${Color.WHITE};
128128
@media (min-width: 800px) {
129129
width: 60%;
130130
align-items: ${({ align }) => {
131-
return align;
132-
}};
131+
return align;
132+
}};
133133
}
134134
`;
135135
export const StyledFaqTitle = styled.h2`
136136
padding-top: 1rem;
137137
color: ${Color.YELLOW};
138-
font-size: 1.3em;
138+
font-size: 1.8em;
139139
@media (min-width: 800px) {
140140
text-align: left;
141141
padding-top: unset;

src/views/Home/components/Faqs/FaqsData.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export const faqsData: FaqType[] = [
99
id: "2274b606-a043-4899-839a-f236d88bbe98",
1010
question: "What is the Barcelona Developers Conference?",
1111
answer:
12-
"Two days to share knowledge and experiences, meet enthusiasts and geeks and learn about new technologies related to Backend and frontend development, Agile, DevOps, Cloud, and many others.",
12+
"Two days to share knowledge and experiences, meet enthusiasts and geeks and learn about new technologies related to Backend and frontend development, AI, Agile, DevOps, Cloud, and many others.",
1313
},
1414
{
1515
id: "13eedebd-59a8-48c5-8897-6270a617ae75",
1616
question: "Why should i participate?",
1717
answer:
1818
"This conference is the perfect stage to discover how others are using your favourite technology. " +
19-
"There is something interesting for any kind of tech passionate: on the backend Java & JVM, Python, Rust, Go, to Frontend with JavaScript, TypeScript and Web assembly; Also, Cloud, Kubernetes, and DevOps, Agile, Big Data, Machine Learning and more",
19+
"There is something interesting for any kind of tech passionate: on the backend Java & JVM, Python, to Frontend with JavaScript, TypeScript and Web assembly; Also, Cloud, Kubernetes, and DevOps, Agile, Big Data, Machine Learning and more",
2020
},
2121
];

0 commit comments

Comments
 (0)