diff --git a/app/arak/page.tsx b/app/arak/page.tsx index bbef88d..143c2e9 100644 --- a/app/arak/page.tsx +++ b/app/arak/page.tsx @@ -113,6 +113,28 @@ export default function PricingPage() { const expressInfoPozsony = expressInfoText("23.500 HUF") const expressInfoBudapestBecs = expressInfoText("50.000 HUF") + const districtSurcharge = language === "hu" + ? { + label: "Kerületi felárak – részletek", + title: "Budapesti kerületi felárak", + description: "Az alábbi díjak a táblázatban szereplő alapárakon felül fizetendők Budapesten, kerületi címek esetén:", + items: [ + "2.000 Ft / út: II., III., X., XII., XIII., XIV. kerület", + "3.500 Ft / út: IV., XV., XVI., XVII. kerület" + ], + closeLabel: "Bezár" + } + : { + label: "District surcharges – details", + title: "Budapest district surcharges", + description: "The following fees apply in Budapest for district addresses, in addition to the base fares shown in the tables:", + items: [ + "2,000 HUF / trip: districts II, III, X, XII, XIII, XIV", + "3,500 HUF / trip: districts IV, XV, XVI, XVII" + ], + closeLabel: "Close" + } + const routeNav = [ { id: "gyor-becs", @@ -230,6 +252,7 @@ export default function PricingPage() { vipInfo={vipInfo} effectiveFrom={`${t.pricing.table.effective}: 2026.01.15`} expressInfo={expressInfoBudapest} + districtSurcharge={districtSurcharge} /> @@ -254,6 +277,7 @@ export default function PricingPage() { vipInfo={vipInfoBudapestVienna} effectiveFrom={`${t.pricing.table.effective}: 2026.01.15`} expressInfo={expressInfoBudapestBecs} + districtSurcharge={districtSurcharge} /> {/* Additional Info Cards */} diff --git a/components/pricing-table.tsx b/components/pricing-table.tsx index ab6ff23..5dd9c7d 100644 --- a/components/pricing-table.tsx +++ b/components/pricing-table.tsx @@ -1,8 +1,9 @@ "use client" import { cn } from "@/lib/utils" -import { Info, Tag, Check, Shield } from "lucide-react" +import { Info, Tag, Check, Shield, CircleHelp } from "lucide-react" import { useLanguage } from "@/lib/language-context" +import { useState } from "react" interface PricingRow { persons: string @@ -24,6 +25,13 @@ interface PricingTableProps { vipInfo?: string[] effectiveFrom?: string expressInfo?: string + districtSurcharge?: { + label: string + title: string + description: string + items: string[] + closeLabel: string + } } const PricingTable = ({ @@ -32,9 +40,11 @@ const PricingTable = ({ specials, vipInfo, effectiveFrom, - expressInfo + expressInfo, + districtSurcharge }: PricingTableProps) => { const { t } = useLanguage() + const [isSurchargeOpen, setIsSurchargeOpen] = useState(false) return (
@@ -50,6 +60,16 @@ const PricingTable = ({

{route}

+ {districtSurcharge && ( + + )}
@@ -201,6 +221,54 @@ const PricingTable = ({ {effectiveFrom}
)} + + {districtSurcharge && isSurchargeOpen && ( +
+
+
+
+
+
+

+ {districtSurcharge.label} +

+

+ {districtSurcharge.title} +

+
+ +
+
+
+

{districtSurcharge.description}

+
+ {districtSurcharge.items.map((item, idx) => ( +
+ + {item} +
+ ))} +
+
+ +
+
+
+
+ )}
) } diff --git a/images/1.jpg b/images/1.jpg index 4cdcff1..6b4e1e3 100644 Binary files a/images/1.jpg and b/images/1.jpg differ diff --git a/images/1_cut.jpg b/images/1_cut.jpg index b423745..7c8573d 100644 Binary files a/images/1_cut.jpg and b/images/1_cut.jpg differ diff --git a/images/2.jpg b/images/2.jpg index de18beb..c814e38 100644 Binary files a/images/2.jpg and b/images/2.jpg differ diff --git a/images/3.jpg b/images/3.jpg index fcfb505..e880572 100644 Binary files a/images/3.jpg and b/images/3.jpg differ diff --git a/images/Audi A6.JPG b/images/Audi A6.JPG index 0913b03..14c683c 100644 Binary files a/images/Audi A6.JPG and b/images/Audi A6.JPG differ diff --git a/images/E-osztály4.JPG b/images/E-osztály4.JPG index 235da7b..22efd01 100644 Binary files a/images/E-osztály4.JPG and b/images/E-osztály4.JPG differ diff --git a/images/Flotta3.jpg b/images/Flotta3.jpg index 9143e50..08d0c76 100644 Binary files a/images/Flotta3.jpg and b/images/Flotta3.jpg differ diff --git a/images/Ford Mondeo fehér MUH416.JPG b/images/Ford Mondeo fehér MUH416.JPG index f17ae7c..c6ebedb 100644 Binary files a/images/Ford Mondeo fehér MUH416.JPG and b/images/Ford Mondeo fehér MUH416.JPG differ diff --git a/images/Ford Transit.jpg b/images/Ford Transit.jpg index 66cd355..04190ea 100644 Binary files a/images/Ford Transit.jpg and b/images/Ford Transit.jpg differ diff --git a/images/Ford_tourneo_fekete1.JPG b/images/Ford_tourneo_fekete1.JPG index c42e803..cb36474 100644 Binary files a/images/Ford_tourneo_fekete1.JPG and b/images/Ford_tourneo_fekete1.JPG differ diff --git a/images/Ford_tourneo_fekete2.JPG b/images/Ford_tourneo_fekete2.JPG index daeb0ff..2ea9238 100644 Binary files a/images/Ford_tourneo_fekete2.JPG and b/images/Ford_tourneo_fekete2.JPG differ diff --git a/images/MB 0404-lq.jpg b/images/MB 0404-lq.jpg index 3b427f1..5061444 100644 Binary files a/images/MB 0404-lq.jpg and b/images/MB 0404-lq.jpg differ diff --git a/images/MB Sprinter (1).jpg b/images/MB Sprinter (1).jpg index ec3468e..5871461 100644 Binary files a/images/MB Sprinter (1).jpg and b/images/MB Sprinter (1).jpg differ diff --git a/images/MB Sprinter (2).jpg b/images/MB Sprinter (2).jpg index e00cca1..15d2eac 100644 Binary files a/images/MB Sprinter (2).jpg and b/images/MB Sprinter (2).jpg differ diff --git a/images/NND.jpg b/images/NND.jpg index 421a21f..1a29d6f 100644 Binary files a/images/NND.jpg and b/images/NND.jpg differ diff --git a/images/Opel Vivaro.JPG b/images/Opel Vivaro.JPG index 6aba934..9befac8 100644 Binary files a/images/Opel Vivaro.JPG and b/images/Opel Vivaro.JPG differ diff --git a/images/PVR Skoda.JPG b/images/PVR Skoda.JPG index d3f4e7b..c042642 100644 Binary files a/images/PVR Skoda.JPG and b/images/PVR Skoda.JPG differ diff --git a/images/Renault Grand Scenic es Renault Trafic.jpg b/images/Renault Grand Scenic es Renault Trafic.jpg index 705c4e8..a825ce5 100644 Binary files a/images/Renault Grand Scenic es Renault Trafic.jpg and b/images/Renault Grand Scenic es Renault Trafic.jpg differ diff --git a/images/Renault Grand Scenic es Renault Trafic_cut.jpg b/images/Renault Grand Scenic es Renault Trafic_cut.jpg index e882c74..459faa6 100644 Binary files a/images/Renault Grand Scenic es Renault Trafic_cut.jpg and b/images/Renault Grand Scenic es Renault Trafic_cut.jpg differ diff --git a/images/Setra 315 GT-HD.JPG b/images/Setra 315 GT-HD.JPG index ad63364..38bc50f 100644 Binary files a/images/Setra 315 GT-HD.JPG and b/images/Setra 315 GT-HD.JPG differ diff --git a/images/Setra TOPP CLASS 415 HD (1)-lq.jpg b/images/Setra TOPP CLASS 415 HD (1)-lq.jpg index 09e5089..ebabda1 100644 Binary files a/images/Setra TOPP CLASS 415 HD (1)-lq.jpg and b/images/Setra TOPP CLASS 415 HD (1)-lq.jpg differ diff --git a/images/Setra TOPP CLASS 415 HD (2).jpg b/images/Setra TOPP CLASS 415 HD (2).jpg index 80ce550..f3b29c7 100644 Binary files a/images/Setra TOPP CLASS 415 HD (2).jpg and b/images/Setra TOPP CLASS 415 HD (2).jpg differ diff --git a/images/Skoda Enyaq.jpg b/images/Skoda Enyaq.jpg index 1cf47e8..f40df4e 100644 Binary files a/images/Skoda Enyaq.jpg and b/images/Skoda Enyaq.jpg differ diff --git a/images/Skoda SuperB-inside.jpeg b/images/Skoda SuperB-inside.jpeg index c7ebff8..affa3a9 100644 Binary files a/images/Skoda SuperB-inside.jpeg and b/images/Skoda SuperB-inside.jpeg differ diff --git a/images/Skoda SuperB.jpeg b/images/Skoda SuperB.jpeg index a6cb092..94e82f6 100644 Binary files a/images/Skoda SuperB.jpeg and b/images/Skoda SuperB.jpeg differ diff --git a/images/Skoda_barna.jpg b/images/Skoda_barna.jpg index 4b29b4b..6c98d7d 100644 Binary files a/images/Skoda_barna.jpg and b/images/Skoda_barna.jpg differ diff --git a/images/Szolg2.jpg b/images/Szolg2.jpg index e078862..82863df 100644 Binary files a/images/Szolg2.jpg and b/images/Szolg2.jpg differ diff --git a/images/Trafic barna.jpg b/images/Trafic barna.jpg index c17710c..0a0e164 100644 Binary files a/images/Trafic barna.jpg and b/images/Trafic barna.jpg differ diff --git a/images/csalad4.jpg b/images/csalad4.jpg index a75f399..7847fc0 100644 Binary files a/images/csalad4.jpg and b/images/csalad4.jpg differ diff --git a/images/header.jpg b/images/header.jpg index 6dd135c..0f7fce4 100644 Binary files a/images/header.jpg and b/images/header.jpg differ diff --git a/images/m0_02.jpg b/images/m0_02.jpg index d3985d9..f5b4cbd 100644 Binary files a/images/m0_02.jpg and b/images/m0_02.jpg differ diff --git a/images/m0_04.jpg b/images/m0_04.jpg index a73a2d8..f543aaf 100644 Binary files a/images/m0_04.jpg and b/images/m0_04.jpg differ diff --git a/images/m0_05.jpg b/images/m0_05.jpg index d51067e..bd5b9e7 100644 Binary files a/images/m0_05.jpg and b/images/m0_05.jpg differ diff --git a/images/m0_07.jpg b/images/m0_07.jpg index 8bbaa5f..46e1fee 100644 Binary files a/images/m0_07.jpg and b/images/m0_07.jpg differ diff --git a/images/m0_09.jpg b/images/m0_09.jpg index 67fb758..d688eef 100644 Binary files a/images/m0_09.jpg and b/images/m0_09.jpg differ diff --git a/images/m0_11.jpg b/images/m0_11.jpg index 9be46e6..1e1876c 100644 Binary files a/images/m0_11.jpg and b/images/m0_11.jpg differ diff --git a/images/m0_13.jpg b/images/m0_13.jpg index 4c139b4..97b968e 100644 Binary files a/images/m0_13.jpg and b/images/m0_13.jpg differ diff --git a/images/m1_03.jpg b/images/m1_03.jpg index 871fc45..dd8636a 100644 Binary files a/images/m1_03.jpg and b/images/m1_03.jpg differ diff --git a/images/m1_04.jpg b/images/m1_04.jpg index 2a42211..9ff03ab 100644 Binary files a/images/m1_04.jpg and b/images/m1_04.jpg differ diff --git a/images/m1_05.jpg b/images/m1_05.jpg index fe1876f..5cfc266 100644 Binary files a/images/m1_05.jpg and b/images/m1_05.jpg differ diff --git a/images/m1_06.jpg b/images/m1_06.jpg index 8d1c927..82f90cc 100644 Binary files a/images/m1_06.jpg and b/images/m1_06.jpg differ diff --git a/images/m1_07.jpg b/images/m1_07.jpg index 070ad19..1d2956c 100644 Binary files a/images/m1_07.jpg and b/images/m1_07.jpg differ diff --git a/images/m1_09.jpg b/images/m1_09.jpg index 623200a..ed0b977 100644 Binary files a/images/m1_09.jpg and b/images/m1_09.jpg differ diff --git a/images/m1_11.jpg b/images/m1_11.jpg index e41d6de..27fe3fa 100644 Binary files a/images/m1_11.jpg and b/images/m1_11.jpg differ diff --git a/images/map1_03.jpg b/images/map1_03.jpg index 3207af5..7332511 100644 Binary files a/images/map1_03.jpg and b/images/map1_03.jpg differ diff --git a/images/map1_04.jpg b/images/map1_04.jpg index bfaea9d..919422b 100644 Binary files a/images/map1_04.jpg and b/images/map1_04.jpg differ diff --git a/images/map1_05.jpg b/images/map1_05.jpg index 546d0f3..baa0c77 100644 Binary files a/images/map1_05.jpg and b/images/map1_05.jpg differ diff --git a/images/map1_06.jpg b/images/map1_06.jpg index 00b623e..e2d5945 100644 Binary files a/images/map1_06.jpg and b/images/map1_06.jpg differ diff --git a/images/map1_07.jpg b/images/map1_07.jpg index f211e51..b6fed6e 100644 Binary files a/images/map1_07.jpg and b/images/map1_07.jpg differ diff --git a/images/map1_08.jpg b/images/map1_08.jpg index 3248d84..4896510 100644 Binary files a/images/map1_08.jpg and b/images/map1_08.jpg differ diff --git a/images/map1_09.jpg b/images/map1_09.jpg index 7172a5a..31bad25 100644 Binary files a/images/map1_09.jpg and b/images/map1_09.jpg differ diff --git a/images/map2_03.jpg b/images/map2_03.jpg index abea177..bdb85b2 100644 Binary files a/images/map2_03.jpg and b/images/map2_03.jpg differ diff --git a/images/map2_04.jpg b/images/map2_04.jpg index b6757b8..d1cec45 100644 Binary files a/images/map2_04.jpg and b/images/map2_04.jpg differ diff --git a/images/map2_05.jpg b/images/map2_05.jpg index f2fa2ea..680908d 100644 Binary files a/images/map2_05.jpg and b/images/map2_05.jpg differ diff --git a/images/map2_06.jpg b/images/map2_06.jpg index 83b040b..ba91dee 100644 Binary files a/images/map2_06.jpg and b/images/map2_06.jpg differ diff --git a/images/map2_07.jpg b/images/map2_07.jpg index 4cc4da9..79b2726 100644 Binary files a/images/map2_07.jpg and b/images/map2_07.jpg differ diff --git a/images/map2_08.jpg b/images/map2_08.jpg index 19258ac..f267d4c 100644 Binary files a/images/map2_08.jpg and b/images/map2_08.jpg differ diff --git a/images/merci+rep.jpg b/images/merci+rep.jpg index e078862..82863df 100644 Binary files a/images/merci+rep.jpg and b/images/merci+rep.jpg differ diff --git a/images/mobile/BTS.jpg b/images/mobile/BTS.jpg index 99dc395..501f82d 100644 Binary files a/images/mobile/BTS.jpg and b/images/mobile/BTS.jpg differ diff --git a/images/mobile/BUD.jpg b/images/mobile/BUD.jpg index 92d6b29..80f5a14 100644 Binary files a/images/mobile/BUD.jpg and b/images/mobile/BUD.jpg differ diff --git a/images/mobile/VIE.jpg b/images/mobile/VIE.jpg index 2b6ca93..0ef00fa 100644 Binary files a/images/mobile/VIE.jpg and b/images/mobile/VIE.jpg differ diff --git a/images/mobile/map.jpg b/images/mobile/map.jpg index 723fe08..7ee00ad 100644 Binary files a/images/mobile/map.jpg and b/images/mobile/map.jpg differ diff --git a/images/mobile/map_mobile_03.jpg b/images/mobile/map_mobile_03.jpg index b05f9c6..deee3b4 100644 Binary files a/images/mobile/map_mobile_03.jpg and b/images/mobile/map_mobile_03.jpg differ diff --git a/images/mobile/map_mobile_05.jpg b/images/mobile/map_mobile_05.jpg index 31843c2..b72ae89 100644 Binary files a/images/mobile/map_mobile_05.jpg and b/images/mobile/map_mobile_05.jpg differ diff --git a/images/skoda.jpg b/images/skoda.jpg index 1cf47e8..f40df4e 100644 Binary files a/images/skoda.jpg and b/images/skoda.jpg differ diff --git a/images/skyflytravel.hu.17aug.jpg b/images/skyflytravel.hu.17aug.jpg index 028c8ed..6c4fea0 100644 Binary files a/images/skyflytravel.hu.17aug.jpg and b/images/skyflytravel.hu.17aug.jpg differ diff --git a/images/skyflytravel.hu.17szept.jpg b/images/skyflytravel.hu.17szept.jpg index 94b36c4..017cdbb 100644 Binary files a/images/skyflytravel.hu.17szept.jpg and b/images/skyflytravel.hu.17szept.jpg differ diff --git a/images/skyflytravel.hu.18apr.jpg b/images/skyflytravel.hu.18apr.jpg index ae64661..e8f9718 100644 Binary files a/images/skyflytravel.hu.18apr.jpg and b/images/skyflytravel.hu.18apr.jpg differ diff --git a/images/skyflytravel.hu.18febr.jpg b/images/skyflytravel.hu.18febr.jpg index 6864e71..b2e2ca0 100644 Binary files a/images/skyflytravel.hu.18febr.jpg and b/images/skyflytravel.hu.18febr.jpg differ diff --git a/images/skyflytravel.hu.18marc.jpg b/images/skyflytravel.hu.18marc.jpg index c9e6890..bbab40e 100644 Binary files a/images/skyflytravel.hu.18marc.jpg and b/images/skyflytravel.hu.18marc.jpg differ diff --git a/images/sol2_02.jpg b/images/sol2_02.jpg index 502ff95..ce92d66 100644 Binary files a/images/sol2_02.jpg and b/images/sol2_02.jpg differ diff --git a/images/sol2_04.jpg b/images/sol2_04.jpg index 1279813..0e04fd4 100644 Binary files a/images/sol2_04.jpg and b/images/sol2_04.jpg differ diff --git a/images/sol2_06.jpg b/images/sol2_06.jpg index eef23b4..bc28baf 100644 Binary files a/images/sol2_06.jpg and b/images/sol2_06.jpg differ diff --git a/images/sol_02.jpg b/images/sol_02.jpg index 599f4bb..67ee504 100644 Binary files a/images/sol_02.jpg and b/images/sol_02.jpg differ diff --git a/images/sol_04.jpg b/images/sol_04.jpg index c675614..7e7e51c 100644 Binary files a/images/sol_04.jpg and b/images/sol_04.jpg differ diff --git a/images/sol_06.jpg b/images/sol_06.jpg index bbd0aac..796c47b 100644 Binary files a/images/sol_06.jpg and b/images/sol_06.jpg differ diff --git a/images/t1_01.jpg b/images/t1_01.jpg index 35b0c6d..00cb997 100644 Binary files a/images/t1_01.jpg and b/images/t1_01.jpg differ diff --git a/images/t1_04.jpg b/images/t1_04.jpg index 1c271d2..2e77020 100644 Binary files a/images/t1_04.jpg and b/images/t1_04.jpg differ diff --git a/images/t1_05.jpg b/images/t1_05.jpg index ccf19d5..8bbe026 100644 Binary files a/images/t1_05.jpg and b/images/t1_05.jpg differ diff --git a/images/t1_06_02.jpg b/images/t1_06_02.jpg index 1c93582..57e19e4 100644 Binary files a/images/t1_06_02.jpg and b/images/t1_06_02.jpg differ diff --git a/images/t1_06_03.jpg b/images/t1_06_03.jpg index 70663ec..3f1d734 100644 Binary files a/images/t1_06_03.jpg and b/images/t1_06_03.jpg differ diff --git a/images/t1_06_04.jpg b/images/t1_06_04.jpg index 612d0c5..0c3e970 100644 Binary files a/images/t1_06_04.jpg and b/images/t1_06_04.jpg differ diff --git a/images/t1_06o_02.jpg b/images/t1_06o_02.jpg index d2fdae8..103bafa 100644 Binary files a/images/t1_06o_02.jpg and b/images/t1_06o_02.jpg differ diff --git a/images/t1_06o_03.jpg b/images/t1_06o_03.jpg index 3f4399c..fde287a 100644 Binary files a/images/t1_06o_03.jpg and b/images/t1_06o_03.jpg differ diff --git a/images/t1_06o_04.jpg b/images/t1_06o_04.jpg index eadf8a9..caade7d 100644 Binary files a/images/t1_06o_04.jpg and b/images/t1_06o_04.jpg differ diff --git a/images/t1_07.jpg b/images/t1_07.jpg index 390b00c..2e32f65 100644 Binary files a/images/t1_07.jpg and b/images/t1_07.jpg differ diff --git a/images/t1_10.jpg b/images/t1_10.jpg index a574921..8898cb8 100644 Binary files a/images/t1_10.jpg and b/images/t1_10.jpg differ diff --git a/images/t1_11.jpg b/images/t1_11.jpg index 3af1724..4ea6dd9 100644 Binary files a/images/t1_11.jpg and b/images/t1_11.jpg differ diff --git a/images/t1_13.jpg b/images/t1_13.jpg index 0e16583..3b95c72 100644 Binary files a/images/t1_13.jpg and b/images/t1_13.jpg differ diff --git a/images/t1_15.jpg b/images/t1_15.jpg index ae69666..a763969 100644 Binary files a/images/t1_15.jpg and b/images/t1_15.jpg differ diff --git a/images/t1_16.jpg b/images/t1_16.jpg index 02810df..b881e05 100644 Binary files a/images/t1_16.jpg and b/images/t1_16.jpg differ diff --git a/images/t1_17.jpg b/images/t1_17.jpg index 1c80f34..1d7f66c 100644 Binary files a/images/t1_17.jpg and b/images/t1_17.jpg differ diff --git a/images/t1_18.jpg b/images/t1_18.jpg index ec7ceca..e0b3335 100644 Binary files a/images/t1_18.jpg and b/images/t1_18.jpg differ diff --git a/images/t1_20.jpg b/images/t1_20.jpg index 3d9bbda..445a142 100644 Binary files a/images/t1_20.jpg and b/images/t1_20.jpg differ diff --git a/images/t1_21.jpg b/images/t1_21.jpg index 905453e..62d3308 100644 Binary files a/images/t1_21.jpg and b/images/t1_21.jpg differ diff --git a/images/t1_24.jpg b/images/t1_24.jpg index 38cb9e0..2e7d7d4 100644 Binary files a/images/t1_24.jpg and b/images/t1_24.jpg differ diff --git a/images/t1_25.jpg b/images/t1_25.jpg index 94dfa1e..d8a2ccc 100644 Binary files a/images/t1_25.jpg and b/images/t1_25.jpg differ diff --git a/images/t1_27.jpg b/images/t1_27.jpg index eca5bfd..12fdd93 100644 Binary files a/images/t1_27.jpg and b/images/t1_27.jpg differ diff --git a/images/t1_28.jpg b/images/t1_28.jpg index 3df28ed..2c8ee0b 100644 Binary files a/images/t1_28.jpg and b/images/t1_28.jpg differ diff --git a/images/t1_31.jpg b/images/t1_31.jpg index c696eb7..57de631 100644 Binary files a/images/t1_31.jpg and b/images/t1_31.jpg differ diff --git a/images/t1_34.jpg b/images/t1_34.jpg index a85fd72..a503eb7 100644 Binary files a/images/t1_34.jpg and b/images/t1_34.jpg differ diff --git a/images/t1_35.jpg b/images/t1_35.jpg index 7b52356..ee941ae 100644 Binary files a/images/t1_35.jpg and b/images/t1_35.jpg differ diff --git a/images/t1_36.jpg b/images/t1_36.jpg index c14182b..9557367 100644 Binary files a/images/t1_36.jpg and b/images/t1_36.jpg differ diff --git a/images/t3_01.jpg b/images/t3_01.jpg index 5d13bf9..68f40bd 100644 Binary files a/images/t3_01.jpg and b/images/t3_01.jpg differ diff --git a/images/t3_02.jpg b/images/t3_02.jpg index 450c322..98bd63e 100644 Binary files a/images/t3_02.jpg and b/images/t3_02.jpg differ diff --git a/images/t3_04.jpg b/images/t3_04.jpg index db86ae8..eca281b 100644 Binary files a/images/t3_04.jpg and b/images/t3_04.jpg differ diff --git a/images/t3_05.jpg b/images/t3_05.jpg index f904ee4..96921df 100644 Binary files a/images/t3_05.jpg and b/images/t3_05.jpg differ diff --git a/images/t3_07.jpg b/images/t3_07.jpg index d10cfb8..f145bdb 100644 Binary files a/images/t3_07.jpg and b/images/t3_07.jpg differ diff --git a/images/t3_08.jpg b/images/t3_08.jpg index 6ea0507..7034793 100644 Binary files a/images/t3_08.jpg and b/images/t3_08.jpg differ diff --git a/images/vito.jpg b/images/vito.jpg index 95759c5..1c5e235 100644 Binary files a/images/vito.jpg and b/images/vito.jpg differ diff --git a/images/zonnen.jpg b/images/zonnen.jpg index b689fe1..1af2654 100644 Binary files a/images/zonnen.jpg and b/images/zonnen.jpg differ diff --git a/public/images/airport.jpg b/public/images/airport.jpg index 421a21f..1a29d6f 100644 Binary files a/public/images/airport.jpg and b/public/images/airport.jpg differ diff --git a/public/images/family.jpg b/public/images/family.jpg index a75f399..7847fc0 100644 Binary files a/public/images/family.jpg and b/public/images/family.jpg differ diff --git a/public/images/fleet-modern.jpg b/public/images/fleet-modern.jpg index 1cf47e8..f40df4e 100644 Binary files a/public/images/fleet-modern.jpg and b/public/images/fleet-modern.jpg differ diff --git a/public/images/fleet/e-class.jpg b/public/images/fleet/e-class.jpg index 1492804..48dd47b 100644 Binary files a/public/images/fleet/e-class.jpg and b/public/images/fleet/e-class.jpg differ diff --git a/public/images/fleet/superb.jpg b/public/images/fleet/superb.jpg index 8f1d314..c95ec4d 100644 Binary files a/public/images/fleet/superb.jpg and b/public/images/fleet/superb.jpg differ diff --git a/public/images/fleet/transit.jpg b/public/images/fleet/transit.jpg index 862adc0..7b1ee4f 100644 Binary files a/public/images/fleet/transit.jpg and b/public/images/fleet/transit.jpg differ diff --git a/public/images/fleet/v-class.jpg b/public/images/fleet/v-class.jpg index 46053b4..383d04a 100644 Binary files a/public/images/fleet/v-class.jpg and b/public/images/fleet/v-class.jpg differ diff --git a/public/images/hero-main.jpg b/public/images/hero-main.jpg index e078862..82863df 100644 Binary files a/public/images/hero-main.jpg and b/public/images/hero-main.jpg differ diff --git a/public/images/interior.jpg b/public/images/interior.jpg index c7ebff8..affa3a9 100644 Binary files a/public/images/interior.jpg and b/public/images/interior.jpg differ diff --git a/public/images/private-sky.jpg b/public/images/private-sky.jpg index a6cb092..94e82f6 100644 Binary files a/public/images/private-sky.jpg and b/public/images/private-sky.jpg differ diff --git a/public/images/private.jpg b/public/images/private.jpg index a6cb092..94e82f6 100644 Binary files a/public/images/private.jpg and b/public/images/private.jpg differ diff --git a/public/images/shared.jpg b/public/images/shared.jpg index 95759c5..1c5e235 100644 Binary files a/public/images/shared.jpg and b/public/images/shared.jpg differ diff --git a/public/images/transit.jpg b/public/images/transit.jpg index 66cd355..04190ea 100644 Binary files a/public/images/transit.jpg and b/public/images/transit.jpg differ