Skip to content

Commit 2c87501

Browse files
committed
chore: pull request changes
1 parent 9186b2e commit 2c87501

File tree

6 files changed

+307
-316
lines changed

6 files changed

+307
-316
lines changed

public/index.html

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
/>
5353
<!-- for Slack -->
5454
<meta content="Date" name="twitter:label1" />
55-
<meta content="July 13th-14th, 2025" name="twitter:data1"/>
55+
<meta content="July 9th-10th, 2025" name="twitter:data1"/>
5656
<meta content="Location" name="twitter:label2" />
5757
<meta content="La Farga, Barcelona" name="twitter:data2" />
5858
<!-- end: Twitter cards -->
@@ -117,8 +117,8 @@
117117
"@context": "https://schema.org",
118118
"@type": "Event",
119119
"name": "DevBcn — Barcelona Developers Conference",
120-
"startDate": "2025-06-13",
121-
"endDate": "2025-06-14",
120+
"startDate": "2025-07-09",
121+
"endDate": "2025-07-10",
122122
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
123123
"eventStatus": "https://schema.org/EventScheduled",
124124
"location": {
@@ -137,28 +137,6 @@
137137
"https://www.devbcn.com/images/devbcn24.png",
138138
"https://www.devbcn.com/images/2023/FaqsImage0.png"
139139
],
140-
"subEvent": {
141-
"@context": "https://schema.org",
142-
"@type": "Event",
143-
"name": "Kubernetes Community Days - Spain",
144-
"description": "One track dedicated to Kubernetes and Cloud computing, curated by the CNCF Foundation",
145-
"startDate": "2025-06-13",
146-
"endDate": "2025-06-14",
147-
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
148-
"eventStatus": "https://schema.org/EventScheduled",
149-
"location": {
150-
"@type": "Place",
151-
"name": "La Farga",
152-
"address": {
153-
"@type": "PostalAddress",
154-
"streetAddress": "carrer Barcelona, 2",
155-
"addressLocality": "L'Hospitalet de Llobregat",
156-
"postalCode": "08901",
157-
"addressRegion": "Ba",
158-
"addressCountry": "SP"
159-
}
160-
}
161-
},
162140
"performers": [],
163141
"description": "Multidisciplinary conference made for Developers and by Developers, to learn and share on the different modern software technologies used across the companies",
164142
"offers": [

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import {
4949
} from "./constants/routes";
5050

5151
import Footer from "./components/Footer/Footer";
52-
import {HomeWrapper} from "./views/Home/HomeWrapper";
52+
import HomeWrapper from "./views/Home/HomeWrapper";
5353
import Navigation from "./components/Navigation/Navigation";
5454
import ScrollToTop from "./components/ScrollToTop/ScrollToTop";
5555
import SpeakerDetailContainer

src/data/2025.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"diversity": false,
1212
"edition": "2025",
1313
"email": "[email protected]",
14-
"endDay": "2025-06-14T14:00:00",
14+
"endDay": "2025-07-10T14:00:00",
1515
"facebook": "https://facebook.com/devbcn",
1616
"flickr": "https://flickr.com/devbcn",
1717
"github": "https://github.com/devbcn",
@@ -30,13 +30,13 @@
3030
"startDate": "2023-12-01T09:00:00",
3131
"endDate": "2025-05-13T09:00:00"
3232
},
33-
"startDay": "2025-06-13T09:00:00",
33+
"startDay": "2025-07-09T09:00:00",
3434
"tickets": {
3535
"startDay": "2025-01-01T00:00:00",
3636
"endDay": "2025-06-01T00:00:00"
3737
},
3838
"title": "DevBcn - Barcelona Developers Conference ",
39-
"trackNumber": 5,
39+
"trackNumber": 4,
4040
"tracks": "Java & JVM | Cloud, DevOps, VMs, Kubernetes | Frontend, JavaScript, TypeScript, Angular, WASM | Leadership, Agile, Diversity | Big Data, Machine Learning, AI, Python",
4141
"twitter": "https://twitter.com/dev_bcn",
4242
"youtube": "https://www.youtube.com/dev_bcn"

src/views/Home/HomeWrapper.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export interface Edition {
3232
github: string;
3333
linkedin: string;
3434
showInfoButtons: boolean;
35+
showCountdown: boolean;
3536
tickets: Cfp;
3637
cfp: Cfp;
3738
carrousel: Carrousel;
@@ -49,7 +50,7 @@ export interface Cfp {
4950
endDay: Date;
5051
}
5152

52-
export const HomeWrapper: FC<React.PropsWithChildren<unknown>> = () => {
53+
const HomeWrapper: FC<React.PropsWithChildren<unknown>> = () => {
5354
const { hash } = useLocation();
5455
const [edition, setEdition] = useState<Edition>();
5556

@@ -71,3 +72,5 @@ export const HomeWrapper: FC<React.PropsWithChildren<unknown>> = () => {
7172
</StyledContainer>
7273
);
7374
};
75+
76+
export default HomeWrapper;

src/views/Home/components/Home/Home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ const Home: FC<React.PropsWithChildren<unknown>> = () => {
9393
{edition?.tracks}
9494
</StyledSubtitle>
9595
</StyledTitleContainer>
96-
{data.showCountdown && (
96+
{data.showCountdown &&
9797
<Countdown date={edition?.startDay}
9898
renderer={TimeCountDown}/>
99-
)}
99+
}
100100
{edition?.actionButtons && <ActionButtons/>}
101101
{edition?.showInfoButtons && <InfoButtons/>}
102102

0 commit comments

Comments
 (0)