5 Commits
bruh ... master

Author SHA1 Message Date
991179c006 Merge pull request #26 from gractwo/BoberITman-patch-3
Coś się kończy, coś się zaczyna
2022-12-11 01:01:58 +01:00
Stanisław Dzioba
4409255f9b Coś się kończy, coś się zaczyna 2022-12-11 00:44:55 +01:00
7a598f022d Merge pull request #25 from gractwo/heisenberg
fix issue#24 by switching datestring from DMY/MDY formats to YMD
2022-09-16 10:03:40 +02:00
e1eb23427e fix issue#24 by switching datestring from DMY/MDY formats to YMD 2022-09-14 21:23:35 +02:00
Stanisław Dzioba
a49bb45ae6 Merge pull request #23 from gractwo/bruh
inkluzywnosc nongamerow
2022-08-10 22:29:38 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -18,4 +18,3 @@ jobs:
run: | run: |
docker stop ${{ github.event.repository.name }} || true docker stop ${{ github.event.repository.name }} || true
docker rm ${{ github.event.repository.name }} || true docker rm ${{ github.event.repository.name }} || true
docker run -p 127.0.0.1:3000:3000 -d --name ${{ github.event.repository.name }} ${{ github.repository }}

View File

@@ -39,7 +39,8 @@ export default function Home() {
<a className="days"> <a className="days">
<h1> <h1>
{Math.floor( {Math.floor(
(Date.now() - new Date("06.07.2020").getTime()) / 86400000 // (Date.now() - new Date("06.07.2020").getTime()) / 86400000
(Date.now() - new Date("2020-07-06").getTime()) / 86400000
)}{" "} )}{" "}
dni dni
</h1> </h1>