Skip to content

Commit

Permalink
updated for 2025 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
Jedidiah-Solomon committed Nov 5, 2024
1 parent 22e0750 commit 919f5e9
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Newsletter from "./components/Newsletter/Newsletter";
import Agenda from "./components/Agenda/Agenda";
import Terms from "./components/Terms_of_use/Terms";
import Privacy from "./components/Privacy_policy/Privacy";
import Countdown from "./components/Countdown/Countdown";
// import Countdown from "./components/Countdown/Countdown";
import PastEvents from "./components/PastEvents/PastEvents";

const App = () => {
Expand All @@ -23,7 +23,7 @@ const App = () => {
element={
<>
<Homepage />
<Countdown />
{/* <Countdown /> */}
<About />
<Reasons />
<Sponsors />
Expand Down
4 changes: 2 additions & 2 deletions src/components/Agenda/Agenda.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
import "./Agenda.css";
import Navbar from "../Navbar/Navbar";
import Newsletter from "../Newsletter/Newsletter";
import Countdown from "../Countdown/Countdown";
// import Countdown from "../Countdown/Countdown";

const Agenda = () => {
const [selectedDay, setSelectedDay] = useState("day1");
Expand Down Expand Up @@ -116,7 +116,7 @@ const Agenda = () => {
{selectedDay === "day1" && renderSchedule(day1Schedule)}
</div>
</div>
<Countdown />
{/* <Countdown /> */}
<Newsletter />
</>
);
Expand Down
4 changes: 2 additions & 2 deletions src/components/Hero/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const Hero = () => {
</div>
<div className="marquee-container">
<span className="marquee-text">
<span id="date-span">Date:</span> Saturday, 26th October, 2024 | Time:
9:00 - 16:00 WAT
<span id="date-span">2025 Edition:</span> Planning is underway. Reach
out for partnership opportunities.
</span>
</div>
<div className="hero-dot-play">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ const Navbar = () => {
<li>
<a href="/agenda">Agenda</a>
</li>
<li>
{/* <li>
<a href="https://lu.ma/bt3rglyx">BOOK A TICKET</a>
</li>
</li> */}
</ul>
</div>
<div className="hamburger" onClick={toggleMenu}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Privacy_policy/Privacy.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect } from "react";
import "../Privacy_policy/Privacy.css";
import Navbar from "../Navbar/Navbar";
import Newsletter from "../Newsletter/Newsletter";
import Countdown from "../Countdown/Countdown";
// import Countdown from "../Countdown/Countdown";

const Privacy = () => {
useEffect(() => {
Expand Down Expand Up @@ -67,7 +67,7 @@ const Privacy = () => {
<li>Redistribute content from Web3 Conference</li>
</ul>
</main>
<Countdown />
{/* <Countdown /> */}
<Newsletter />
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Speakers/Speakers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const speakersData = [
const Speakers = () => {
return (
<div id="speakers" className="speakers">
<h2>Keynote Speakers and Panelists</h2>
<h2>Keynote Speakers and Panelists | 2024 Edition</h2>
<p>
An elite lineup of speakers and panelists: uniting leading experts and
innovators from the industry.
Expand Down
4 changes: 2 additions & 2 deletions src/components/Terms_of_use/Terms.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect } from "react";
import "../Terms_of_use/Terms.css";
import Navbar from "../Navbar/Navbar";
import Newsletter from "../Newsletter/Newsletter";
import Countdown from "../Countdown/Countdown";
// import Countdown from "../Countdown/Countdown";

const Terms = () => {
useEffect(() => {
Expand Down Expand Up @@ -75,7 +75,7 @@ const Terms = () => {
</a>
</p>
</main>
<Countdown />
{/* <Countdown /> */}
<Newsletter />
</>
);
Expand Down

0 comments on commit 919f5e9

Please sign in to comment.