Skip to content
Open
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
4 changes: 3 additions & 1 deletion client/package-lock.json

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

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
]
},
"devDependencies": {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where do you use this?

"file-loader": "^6.2.0",
"tailwindcss": "^3.3.3"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions client/src/components/Location.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import locationWebp from "../assets/img/webp/Indrumar/LocationPicture.webp";

function Location() {
return (
<>
<div>
<div className="text-5xl flex justify-center text-stroke-3 font-bold text-[#78e800]">
LOCATIE
</div>
<div className="flex-wrap rounded-lg pb-16 ">
<div className="relative w-[90%] md:w-4/6 w-4/5 rounded-lg mx-auto mt-16 border-4 border-[#78e800] shadow-inner ">
<img
className="w-full rounded-lg"
src={locationWebp}
alt="Imagine cu locatia si caile de acces catre cladire"
/>
</div>
</div>
</div>
</>
);
}

export default Location;
26 changes: 26 additions & 0 deletions client/src/components/Schedule.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import scheduleWebp from "../assets/img/webp/Indrumar/SchedulePicture.webp";

function Program() {
return (
<>
<div>
<div className="text-5xl flex justify-center text-stroke-3 font-bold text-[#78e800]">
PROGRAM
</div>
<div className="flex-wrap rounded-lg pb-16 ">
<div className="relative w-[90%] md:w-4/6 w-4/5 rounded-lg mx-auto mt-16 border-4 border-[#78e800] shadow-inner ">
<img
className="w-full rounded-lg"
src={scheduleWebp}
alt="Imagine"
/>
</div>
</div>
</div>
</>
);
}

//vrem vreme buna muie lu furtuna ca nu ne-a lasat sa punem animatia

export default Program;
4 changes: 4 additions & 0 deletions client/src/views/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import Ambasadori from "../components/Ambasadori";
import Album from "../components/Album";
import Banner from "../components/Banner";
import Stats from "../components/Stats";
import Location from "../components/Location";
import Schedule from "../components/Schedule";
export default function Home() {
return (
<>
Expand All @@ -30,6 +32,8 @@ export default function Home() {
<Banner />
<div id="Inscrieri" className=" pt-0">
{/* De la ora 00 : 00 se incepe calculul */}
<Location />
<Schedule />
<ButoanePrincipale />
<ActivitatiSecundare />
<Cosplay />
Expand Down