diff --git a/public/contact.html b/public/contact.html index e520c99..e244165 100644 --- a/public/contact.html +++ b/public/contact.html @@ -2,7 +2,7 @@ - + Vandevliet Aerial Shots @@ -15,23 +15,22 @@ - +
- +
-
-
-

Contact

- +
+
+

+ Stuur mij gerust een mailtje voor een vrijblijvend gesprek :) +

-
- -
+ \ No newline at end of file diff --git a/public/includes/components/contact-row.html b/public/includes/components/contact-row.html deleted file mode 100644 index fda93d8..0000000 --- a/public/includes/components/contact-row.html +++ /dev/null @@ -1,38 +0,0 @@ -
-

- Stuur mij gerust een mailtje voor een offerte of vrijblijvend gesprek! 🙂 -
🡇 -

-
-
-
-

Bob Vandevliet

-

Gecertificeerd FPV-dronepiloot

-

- bob@vandevliet-aerialshots.com -
Arnhem, Gelderland -

- -

Vandevliet Aerial Shots

-

- KvK: 94567255
- Btw: NL005095319B19 -

-

- Algemene Voorwaarden -

- -

- - - -

-
-
-
-
-
- Portrait foto van mijzelf. -
-
-
\ No newline at end of file diff --git a/public/includes/footer.html b/public/includes/footer.html new file mode 100644 index 0000000..b309074 --- /dev/null +++ b/public/includes/footer.html @@ -0,0 +1,46 @@ + \ No newline at end of file diff --git a/public/includes/partials/head-content.html b/public/includes/head.html similarity index 84% rename from public/includes/partials/head-content.html rename to public/includes/head.html index 546a338..0b16656 100644 --- a/public/includes/partials/head-content.html +++ b/public/includes/head.html @@ -11,19 +11,14 @@ https://cdn.jsdelivr.net https://*.fontawesome.com; media-src 'self' - https://www.youtube.com - https://youtu.be + https://www.youtube.com https://youtu.be https://www.linkedin.com; frame-src 'self' - https://www.youtube.com/embed/ - https://youtu.be/embed/ + https://www.youtube.com/embed/ https://youtu.be/embed/ https://www.linkedin.com/embed/; - style-src 'self' 'unsafe-inline' - https://*.fontawesome.com; - font-src 'self' - https://*.fontawesome.com; - connect-src 'self' - https://*.fontawesome.com; + style-src 'self' 'unsafe-inline' https://*.fontawesome.com; + font-src 'self' https://*.fontawesome.com; + connect-src 'self' https://*.fontawesome.com; object-src 'none'; img-src 'self' data:; "> diff --git a/public/includes/components/nav.html b/public/includes/nav.html similarity index 100% rename from public/includes/components/nav.html rename to public/includes/nav.html diff --git a/public/includes/partials/footer-bottom.html b/public/includes/partials/footer-bottom.html deleted file mode 100644 index df7c938..0000000 --- a/public/includes/partials/footer-bottom.html +++ /dev/null @@ -1,6 +0,0 @@ -
-

- Vandevliet Aerial Shots © - • Privacyverklaring -

-
\ No newline at end of file diff --git a/public/includes/pricing/cat-open.html b/public/includes/pricing/cat-open.html index 94afe06..ec146b2 100644 --- a/public/includes/pricing/cat-open.html +++ b/public/includes/pricing/cat-open.html @@ -2,7 +2,7 @@

Open categorie

vanaf €350,-

-

Geschikt voor indoor drone tours en vluchten in ongecontroleerd luchtruim met een laag risico:

+

Geschikt voor indoor en vluchten in ongecontroleerd luchtruim met een laag risico:

  • Bedrijfsvideo
  • Vastgoed
  • diff --git a/public/index.html b/public/index.html index fe939db..7a69d1f 100644 --- a/public/index.html +++ b/public/index.html @@ -1,30 +1,27 @@ - - - - + - <!--# echo var='title' --> - + Vandevliet Aerial Shots + - - + + - +
    - +
    -

    +

    FPV dronevideo's voor bedrijven, vastgoed, recreatie, sport en evenementen

    Ontdek meer

    - +
    - +
    - +
@@ -193,13 +190,7 @@
- + \ No newline at end of file diff --git a/public/privacy.html b/public/privacy.html index aa101b5..d6e643a 100644 --- a/public/privacy.html +++ b/public/privacy.html @@ -2,7 +2,7 @@ - + Privacyverklaring • Vandevliet Aerial Shots @@ -15,9 +15,9 @@ - +
- +
@@ -56,7 +56,7 @@
- + \ No newline at end of file diff --git a/src/js/scripts.js b/src/js/scripts.js index 0788fdd..ad13924 100644 --- a/src/js/scripts.js +++ b/src/js/scripts.js @@ -28,28 +28,15 @@ window.addEventListener('pageshow', () => document.addEventListener('DOMContentLoaded', () => { - /** - * @type {HTMLDivElement} - */ - const navBar = document.getElementById('navbarNav'); - /** - * @type {NodeListOf} - */ - const navLinks = navBar.querySelectorAll('a.nav-link'); /** * @type {NodeListOf} */ const sectionsWithId = document.querySelectorAll('section[id]'); - // Update nav links and add anchor links to section headers. sectionsWithId.forEach(anchorTarget => { - /** - * @type {HTMLHeadingElement|null} - */ const anchorHeader = anchorTarget.querySelector('h1,h2'); - // Add anchor link to section header. if (anchorHeader) { const anchorLink = document.createElement('a'); @@ -61,7 +48,7 @@ document.addEventListener('DOMContentLoaded', () => }); // Collapse the navbar in mobile view after clicking a link. - navLinks.forEach(navLink => + document.querySelectorAll('#navbarNav li.nav-item>a').forEach(navLink => { navLink.addEventListener('click', () => { diff --git a/src/scss/styles.scss b/src/scss/styles.scss index 56b43c0..ca48316 100644 --- a/src/scss/styles.scss +++ b/src/scss/styles.scss @@ -91,7 +91,6 @@ var(--#{$prefix}font-sans-serif); main { @extend .pt-3; @extend .pb-4; - @extend .flex-grow-1; } section, @@ -100,10 +99,6 @@ main>* { @extend .pb-3; } -header { - min-height: 4.5rem; -} - ::selection { @extend .text-dark; background-color: $red-200; @@ -318,10 +313,6 @@ img.grayscale-effect { overflow: hidden; } -footer .card { - background-color: var(--bs-card-bg) !important; -} - .card-img-overlay { position: unset; z-index: 1;