From 764de2047d1ecd2846cb7647d65f734791e30572 Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 16:25:49 +0100 Subject: [PATCH 01/11] Meerdere metatags toegevoegd. Mogelijkheid gemaakt dat er meerdere metatags zijn voor o.a facebook en twitter. --- index.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 193d16c..b0228d5 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,9 @@ - Checkjebon.nl - Goedkopere boodschappen - @@ -15,6 +13,17 @@ + + + + + + + + + + + Checkjebon.nl - Goedkopere boodschappen
From 577927d1c03dfab376c063734236cf177fdd8edd Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 16:32:04 +0100 Subject: [PATCH 02/11] Andere font gemaakt voor de website --- css/site/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/site/style.css b/css/site/style.css index c9d899a..80f81d3 100644 --- a/css/site/style.css +++ b/css/site/style.css @@ -1,6 +1,8 @@ +@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); + body { - font-family: "Lato", sans-serif; + font-family: 'Open Sans', sans-serif; } .caps From 60a41802204e12ad73051f0e89de1d63268919ac Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 16:32:18 +0100 Subject: [PATCH 03/11] De buttons mooi afgerond --- index.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/index.html b/index.html index b0228d5..765054a 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,9 @@ + Checkjebon.nl - Goedkopere boodschappen - - - - - - - - - - @@ -23,7 +14,16 @@ - Checkjebon.nl - Goedkopere boodschappen + + + + + + + + + +
@@ -33,8 +33,8 @@

Checkjebon.nl

Bekijk wat je kwijt zou zijn voor dezelfde boodschappen bij een andere supermarkt en bespaar elke keer dat je naar de winkel gaat.

- - + +

@@ -43,16 +43,16 @@

Checkjebon.nl

Op zoek naar een specifiek merk? Tik de merknaam er dan bij.

- - - + + +

@@ -142,7 +142,7 @@

{{ selectedSupermarket?.c }}

- +

From bd04e36aa50925a02383abb8fb3ad0c3515b6852 Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:18:13 +0100 Subject: [PATCH 04/11] Betere uitleg over supermarken die niet werken --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 765054a..a64b524 100644 --- a/index.html +++ b/index.html @@ -91,7 +91,8 @@

Totaalprijs

- Waarom sommige supermarkten ontbreken, zoals LIDL, Nettorama, Boni, etc. + Waarom ontbreken er sommige supermarkten, zoals LIDL, Nettorama, Boni?

+ Een aantal grote supermarktketens zoals LIDL, Nettorama, Boni maar ook online bezorgservices zoals GORILLAS en Crisp hebben geen prijzen op hun website staan. Hierdoor kunnen ze ook niet meegenomen worden in de prijsvergelijking van Checkjebon.nl.

From 91ad734a6616a09efb6b03357c663a7fdd4ddb2a Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:31:27 +0100 Subject: [PATCH 05/11] Meer afgerond --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index a64b524..541e322 100644 --- a/index.html +++ b/index.html @@ -58,12 +58,12 @@

Checkjebon.nl

-
+

Totaalprijs

-
    -
  • +
      +
    • From 25550ff93b971e9fe4287272e5379bd28f39175d Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:53:16 +0100 Subject: [PATCH 06/11] Super raar lijntje weggehaald :) --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5e013d2..ddb684b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ - web.config data/supermarkets/ \ No newline at end of file From cda96984dc279c15b8a24ae04e0387d65da7acc3 Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:53:56 +0100 Subject: [PATCH 07/11] Names 'joost00719' docker support toegevoegd --- Dockerfile | 4 ++++ docker-compose.yml | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 Dockerfile create mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ed79a1b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM halverneus/static-file-server + +COPY . /web +EXPOSE 8080 \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..541923d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,6 @@ +version: "3.9" +services: + web: + build: . + ports: + - "8080:8080" \ No newline at end of file From 392eaacae5b995eebb1a9490d8d970dfc73d809b Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:55:39 +0100 Subject: [PATCH 08/11] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1ea7d86..e904cd1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +See my version made here: https://cjb.justinnn.dev/ +Keep in mind these are always up-to date with my latest commits: + # Checkjebon.nl Comparing food prices across multiple supermarkets is made a lot simpler using Checkjebon.nl. Simply scan your receipt, or enter your shopping list manually and you can instantly compare how much you would spend at each supermarket on the exact same products. You can query for generic products like `milk` or be more exact and specify the brand and amount. From bb360b70d8f31627f13350720b7dc6b26821e250 Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 17:56:03 +0100 Subject: [PATCH 09/11] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e904cd1..62a10a0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -See my version made here: https://cjb.justinnn.dev/ -Keep in mind these are always up-to date with my latest commits: +See my version made here: https://cjb.justinnn.dev/
      +Keep in mind these are always up-to date with my latest commits. # Checkjebon.nl From 15c502d4af43186e3b1ef8ad1848dc791d6d8221 Mon Sep 17 00:00:00 2001 From: Justinnn <63072677+Jqstln@users.noreply.github.com> Date: Sun, 25 Dec 2022 22:06:34 +0100 Subject: [PATCH 10/11] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 62a10a0..1ea7d86 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -See my version made here: https://cjb.justinnn.dev/
      -Keep in mind these are always up-to date with my latest commits. - # Checkjebon.nl Comparing food prices across multiple supermarkets is made a lot simpler using Checkjebon.nl. Simply scan your receipt, or enter your shopping list manually and you can instantly compare how much you would spend at each supermarket on the exact same products. You can query for generic products like `milk` or be more exact and specify the brand and amount. From 702432b1645fbbe9b4e2c4809e0d2a691f38bf1f Mon Sep 17 00:00:00 2001 From: Justinnn Date: Thu, 21 Sep 2023 23:09:18 +0200 Subject: [PATCH 11/11] Update CNAME --- CNAME | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CNAME b/CNAME index 95dd225..028590a 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -www.checkjebon.nl \ No newline at end of file +cjb.justinnn.dev \ No newline at end of file