Skip to content

Commit

Permalink
Blen.fix update mistake component
Browse files Browse the repository at this point in the history
  • Loading branch information
blenassefa2 committed May 15, 2024
1 parent eef91ce commit c171ece
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dist/hacks-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
<div class="square" id="sq9"></div>
</div>
</app-root>
<script src="runtime.fa4c12334e562a2f.js" type="module"></script><script src="polyfills.90ef581e7c769a2c.js" type="module"></script><script src="scripts.e320179c7ad2f681.js" defer></script><script src="vendor.a4cf9e761422ef78.js" type="module"></script><script src="main.25b09cedf834bf30.js" type="module"></script>
<script src="runtime.fa4c12334e562a2f.js" type="module"></script><script src="polyfills.90ef581e7c769a2c.js" type="module"></script><script src="scripts.e320179c7ad2f681.js" defer></script><script src="vendor.a4cf9e761422ef78.js" type="module"></script><script src="main.8f6123d6717afdcd.js" type="module"></script>

</body></html>
1 change: 0 additions & 1 deletion dist/hacks-website/main.25b09cedf834bf30.js

This file was deleted.

1 change: 1 addition & 0 deletions dist/hacks-website/main.8f6123d6717afdcd.js

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions src/app/pages/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ <h1 class="w-full text-center flex flex-row justify-start items-center mb-2"><sp
</div>
</div>
</div> -->
<div *ngIf="registrationButtonVisible" class="box relative">
<!-- <div *ngIf="registrationButtonVisible" class="box relative">
<svg
class="absolute top-0 right-0 text-red-500 w-4 h-4"
fill="currentColor"
Expand All @@ -169,24 +169,24 @@ <h1 class="w-full text-center flex flex-row justify-start items-center mb-2"><sp
>
More Day!
</p>
</div>
</div> -->
<!-- href = 'https://www.youtube.com/watch?v=a7bEAVJo7DU' target="_blank" -->

<div *ngIf="countDownVisible">
<!-- <div *ngIf="countDownVisible">
<app-count-down></app-count-down>
</div>
<p *ngIf="registrationButtonVisible" class="text-gray-300 text-lg">
</div> -->
<!-- <p *ngIf="registrationButtonVisible" class="text-gray-300 text-lg">
Get your spot in the Hackathon
</p>
</p> -->
<div class="flex justify-between items-center">
<button
<!-- <button
*ngIf="registrationButtonVisible"
onClick="register_modal.showModal()"
class="inline-flex disabled:bg-gray-500 text-black bg-white border-0 max-sm:px-4 py-2 px-6 focus:outline-none hover:drop-shadow-xl hover:bg-gray-300 rounded max-sm:text-sm text-lg"
>
Register Now
</button>
<dialog
</button> -->
<!-- <dialog
*ngIf="showRegistrationModal"
id="register_modal"
class="modal mt-4"
Expand Down Expand Up @@ -259,7 +259,7 @@ <h1 class="w-full text-center flex flex-row justify-start items-center mb-2"><sp
<button class="btn">Close</button>
</div>
</form>
</dialog>
</dialog> -->

<!-- <button
onClick="get_involved_modal.showModal()"
Expand Down
6 changes: 3 additions & 3 deletions src/app/pages/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ export class HomeComponent implements OnInit {
showGetInvolvedModal = true;
showTeamRegistrationModal = false;
showIndividualRegistrationModal = false;
showRegistrationModal = true;
showRegistrationModal = false;
currentSection: string = 'home';
registrationDeadline = new Date(2024, 5, 31, 23, 59, 59);
registrationButtonVisible = true;
countDownVisible = true;
registrationButtonVisible = false;
countDownVisible = false;
countDownDate = new Date('2024-5-15T20:59:00');
animated: boolean = false;

Expand Down

0 comments on commit c171ece

Please sign in to comment.