Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/>
<meta
property="og:image"
content="https://ensembleai-hackathon.github.io/ensembleaihackathon.pl/images/logos_25/LOGO_svg_rozowe.png"
content="https://ensembleai-hackathon.github.io/ensembleaihackathon.pl/images/logos_26/LOGO_różowe_białe.svg"
/>
<meta property="og:image:width" content="480" />
<meta property="og:image:height" content="480" />
Expand Down
16 changes: 16 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"homepage": "https://ensembleAI-hackathon.github.io/ensembleaihackathon.pl/",
"name": "ensembleaihackathon.pl",
"private": false,
"version": "2.0",
"version": "2.1",
"type": "module",
"scripts": {
"predeploy": "npm run build",
Expand All @@ -25,6 +25,7 @@
"preview": "vite preview"
},
"dependencies": {
"aos": "^2.3.4",
"i18next": "^24.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
File renamed without changes.
Binary file added public/documents/regulamin_2026.pdf
Binary file not shown.
329 changes: 329 additions & 0 deletions public/images/logos_26/www_LOGO.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/adam_naumiec.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/aleksander_nowak.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/aleksandra_kukulka.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/barbara_gawlik.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/people/dominik_gawel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/jakub_halaczkiewicz.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/jan_slosarczyk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/mikolaj_pajor.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/paulina_kubera.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/people/piotr_cywoniuk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { useEffect } from "react";
import { Routes, Route, useLocation } from "react-router-dom";
import AOS from "aos";
import "aos/dist/aos.css";
import "./styles/styleBcg.css";
import "./styles/style.css";
import "./styles/navbar.css";
Expand All @@ -23,6 +25,10 @@ import NavBar from "./components/Navbar";
const App = () => {
const location = useLocation();
useEffect(() => {
AOS.init({
duration: 1000,
once: true,
});
// Firefly effect
let bcg = document.getElementById("bcg");
let quantity = 15;
Expand All @@ -46,6 +52,7 @@ const App = () => {

useEffect(() => {
window.scrollTo({ top: 0, behavior: "smooth" });
AOS.refresh();
}, [location.pathname]);

return (
Expand Down
17 changes: 13 additions & 4 deletions src/components/2024/MainContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@ import SectionMain from "./sections/SectionMain";
import SectionPartners from "./sections/SectionPartners";
import SectionAdmins from "./sections/SectionAdmins";
import SectionReport from "./sections/SectionReport";
import SectionWrapper from "../SectionWrapper";

const MainContent2024 = () => {
return (
<main>
<SectionMain />
<SectionReport />
<SectionPartners />
<SectionAdmins />
<SectionWrapper direction="fade-down">
<SectionMain />
</SectionWrapper>
<SectionWrapper direction="fade-right">
<SectionReport />
</SectionWrapper>
<SectionWrapper direction="fade-left">
<SectionPartners />
</SectionWrapper>
<SectionWrapper direction="fade-up">
<SectionAdmins />
</SectionWrapper>
</main>
);
};
Expand Down
12 changes: 0 additions & 12 deletions src/components/2024/sections/SectionAbout.jsx

This file was deleted.

105 changes: 0 additions & 105 deletions src/components/2024/sections/SectionTimeline.jsx

This file was deleted.

17 changes: 13 additions & 4 deletions src/components/2025/MainContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@ import SectionMain from "./sections/SectionMain";
import SectionPartners from "./sections/SectionPartners";
import SectionAdmins from "./sections/SectionAdmins";
import SectionReport from "./sections/SectionReport";
import SectionWrapper from "../SectionWrapper";

const MainContent2025 = () => {
return (
<main>
<SectionMain />
<SectionReport />
<SectionPartners />
<SectionAdmins />
<SectionWrapper direction="fade-down">
<SectionMain />
</SectionWrapper>
<SectionWrapper direction="fade-right">
<SectionReport />
</SectionWrapper>
<SectionWrapper direction="fade-left">
<SectionPartners />
</SectionWrapper>
<SectionWrapper direction="fade-up">
<SectionAdmins />
</SectionWrapper>
</main>
);
};
Expand Down
21 changes: 16 additions & 5 deletions src/components/2026/MainContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,26 @@ import SectionAbout from "./sections/SectionAbout";
import SectionAdmins from "./sections/SectionAdmins";
import SectionTimeline from "./sections/SectionTimeline";
import SectionPartners from "./sections/SectionPartners";
import SectionWrapper from "../SectionWrapper";

const MainContent2026 = () => {
return (
<main>
<SectionMain />
<SectionAbout />
<SectionTimeline />
<SectionPartners />
<SectionAdmins />
<SectionWrapper direction="fade-down">
<SectionMain />
</SectionWrapper>
<SectionWrapper direction="fade-right">
<SectionAbout />
</SectionWrapper>
<SectionWrapper direction="fade-left">
<SectionTimeline />
</SectionWrapper>
<SectionWrapper direction="fade-right">
<SectionPartners />
</SectionWrapper>
<SectionWrapper direction="fade-up">
<SectionAdmins />
</SectionWrapper>
</main>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/2026/sections/SectionAbout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SectionAbout = () => {
{ question: `${t("when")}`, answers: [`${t("exactHackathonDate")}`] },
{
question: `${t("where")}`,
answers: [`${t("inWarsaw")}`],
answers: [`${t("pw")}`],
},
{ question: `${t("team")}`, answers: [`${t("threeToFivePeople")}`] },
];
Expand Down
Loading