Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improves #57

Merged
merged 12 commits into from
Sep 24, 2024
8 changes: 4 additions & 4 deletions public_html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,17 +243,17 @@ <h1>O nas</h1>

<!-- About Us Section -->
<section class="about-team">
<div class="about-container fade-in">
<div class="about-container ">
<h2>Poznaj nasz zespół</h2>
<div class="about-content">
<div class="about-item fade-in">
<div class="about-item ">
<img src="img/katarzyna.jpg" alt="Katarzyna Pawłowska-Malesa">
<div class="about-text">
<h3>Katarzyna</h3>
<p>Założycielka, Dyrektorka operacyjna i główna mechanik. Pasjonatka hulajnóg elektrycznych. Codziennie daje z siebie wszystko, aby hulajnogi klientów były sprawne.</p>
</div>
</div>
<div class="about-item fade-in">
<div class="about-item ">
<img src="img/maciej.jpg" alt="Maciej Bujoczek">
<div class="about-text">
<h3>Maciej</h3>
Expand All @@ -266,7 +266,7 @@ <h3>Maciej</h3>

<!-- Counter Section -->
<!--TODO zmienić liczby -->
<section class="space-ptb overflow-hidden fade-in">
<section class="space-ptb overflow-hidden ">
<div class="about-container position-relative">
<div class="bg-primary-gradient py-5">
<div class="text-center">
Expand Down
4 changes: 2 additions & 2 deletions public_html/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,13 @@ <h1 class="raleway-header">HulajDusza</h1>
<main>

<!-- GOOGLE MAPS --->
<section class="map-container fade-in">
<section class="map-container ">
<h2 id="location">Nasza lokalizacja</h2>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2551.4453021158115!2d18.99224926929733!3d50.24626694637051!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4716ce60a8559e0f%3A0xfac9dc82247cd9df!2sWincentego%20Pola%2020%2C%2040-596%20Katowice!5e0!3m2!1spl!2spl!4v1721823585135!5m2!1spl!2spl" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>

<!-- CONTACT US -->
<section class="container fade-in">
<section class="container ">
<h2 class="contact-with-us">Skontaktuj się z nami</h2>

<div class="contact-container">
Expand Down
12 changes: 6 additions & 6 deletions public_html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h1 class="raleway-header">HulajDusza</h1>
</nav>

<main>
<section id="hero" class="fade-in">
<section id="hero">
<div class="hero-content">
<h2>Najlepszy serwis hulajnóg elektrycznych w mieście</h2>
<p>Zapewniamy szybkie i profesjonalne usługi naprawy oraz konserwacji.</p>
Expand All @@ -242,11 +242,11 @@ <h2>Najlepszy serwis hulajnóg elektrycznych w mieście</h2>
<section id="services-overview">
<h2>Nasze Usługi</h2>
<div class="services">
<article class="service" class="fade-in">
<article class="service">
<h3>Naprawa Hulajnóg</h3>
<p>Oferujemy kompleksowe usługi naprawcze dla wszystkich marek hulajnóg elektrycznych. Niezależnie od problemu, naprawimy Twoją hulajnogę szybko i sprawnie.</p>
</article>
<article class="service" class="fade-in">
<article class="service">
<h3>Konserwacja i Przeglądy</h3>
<p>Regularna konserwacja jest kluczem do długowieczności Twojej hulajnogi. Oferujemy przeglądy okresowe, wymianę części i pełną diagnostykę.</p>
</article>
Expand All @@ -256,7 +256,7 @@ <h3>Konserwacja i Przeglądy</h3>
<section id="why-us">
<h2>Dlaczego My?</h2>
<div class="reasons">
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content">
<div class="text">
<h3>Doświadczenie</h3>
Expand All @@ -267,7 +267,7 @@ <h3>Doświadczenie</h3>
</div>
</div>
</article>
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content reverse">
<div class="image">
<img src="img/jakość.png" alt="Jakość" />
Expand All @@ -278,7 +278,7 @@ <h3>Jakość</h3>
</div>
</div>
</article>
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content">
<div class="text">
<h3>Zadowoleni Klienci</h3>
Expand Down
2 changes: 1 addition & 1 deletion public_html/js/script.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**

Check failure on line 1 in public_html/js/script.js

View check run for this annotation

Codeac.io / Codeac Code Quality

Parsing error: No Babel config file detected for /tmp/commit-1255204-eslint/public_html/js/script.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.
* Initializes various functionalities on the webpage.
*
* @returns {void}
Expand Down Expand Up @@ -95,7 +95,7 @@
const maxScroll = 300; // Adjust this value to set when the scaling stops

let logoWidth = maxLogoScale - (scrollTop / maxScroll) * (maxLogoScale - minLogoScale);
if (logoWidth < minLogoScale) {logo Width = minLogoScale};
logoWidth = Math.max(logoWidth, minLogoScale);
logo.css('width', logoWidth + 'px');

const maxPadding = 10; // Original padding top/bottom
Expand All @@ -103,7 +103,7 @@

let headerPadding = maxPadding - (scrollTop / maxScroll) * (maxPadding - minPadding);

if (headerPadding < minPadding) {headerPadding = minPadding};

Check warning on line 106 in public_html/js/script.js

View check run for this annotation

codefactor.io / CodeFactor

public_html/js/script.js#L106

Unnecessary semicolon. (no-extra-semi)

stickyHeader.css('padding', headerPadding + 'px 20px');
}
Expand Down
6 changes: 3 additions & 3 deletions public_html/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ <h2>Profesjonalne usługi serwisowe dla Twojej hulajnogi elektrycznej</h2>
</div>
</section>

<section class="services-overview fade-in">
<section class="services-overview ">
<div class="services-container">
<div class="service-item">
<h3>Naprawa hulajnóg elektrycznych</h3>
Expand All @@ -261,7 +261,7 @@ <h3>Diagnostyka komputerowa</h3>
</div>
</section>

<section class="service-details fade-in">
<section class="service-details ">
<div class="services-container">
<div class="service-detail-item">
<h3>Naprawa hamulców</h3>
Expand All @@ -282,7 +282,7 @@ <h3>Inspekcja stanu technicznego</h3>
</div>
</section>

<section class="cta-container fade-in">
<section class="cta-container ">
<div class="cta-pricing">
<div class="cta-content">
<h2>Chcesz poznać nasze ceny?</h2>
Expand Down
8 changes: 4 additions & 4 deletions src/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ <h1>O nas</h1>

<!-- About Us Section -->
<section class="about-team">
<div class="about-container fade-in">
<div class="about-container ">
<h2>Poznaj nasz zespół</h2>
<div class="about-content">
<div class="about-item fade-in">
<div class="about-item ">
<img src="img/katarzyna.jpg" alt="Katarzyna Pawłowska-Malesa">
<div class="about-text">
<h3>Katarzyna</h3>
<p>Założycielka, Dyrektorka operacyjna i główna mechanik. Pasjonatka hulajnóg elektrycznych. Codziennie daje z siebie wszystko, aby hulajnogi klientów były sprawne.</p>
</div>
</div>
<div class="about-item fade-in">
<div class="about-item ">
<img src="img/maciej.jpg" alt="Maciej Bujoczek">
<div class="about-text">
<h3>Maciej</h3>
Expand All @@ -56,7 +56,7 @@ <h3>Maciej</h3>

<!-- Counter Section -->
<!--TODO zmienić liczby -->
<section class="space-ptb overflow-hidden fade-in">
<section class="space-ptb overflow-hidden ">
<div class="about-container position-relative">
<div class="bg-primary-gradient py-5">
<div class="text-center">
Expand Down
4 changes: 2 additions & 2 deletions src/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
<main>

<!-- GOOGLE MAPS --->
<section class="map-container fade-in">
<section class="map-container ">
<h2 id="location">Nasza lokalizacja</h2>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2551.4453021158115!2d18.99224926929733!3d50.24626694637051!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4716ce60a8559e0f%3A0xfac9dc82247cd9df!2sWincentego%20Pola%2020%2C%2040-596%20Katowice!5e0!3m2!1spl!2spl!4v1721823585135!5m2!1spl!2spl" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>

<!-- CONTACT US -->
<section class="container fade-in">
<section class="container ">
<h2 class="contact-with-us">Skontaktuj się z nami</h2>

<div class="contact-container">
Expand Down
12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</nav>

<main>
<section id="hero" class="fade-in">
<section id="hero">
<div class="hero-content">
<h2>Najlepszy serwis hulajnóg elektrycznych w mieście</h2>
<p>Zapewniamy szybkie i profesjonalne usługi naprawy oraz konserwacji.</p>
Expand All @@ -32,11 +32,11 @@ <h2>Najlepszy serwis hulajnóg elektrycznych w mieście</h2>
<section id="services-overview">
<h2>Nasze Usługi</h2>
<div class="services">
<article class="service" class="fade-in">
<article class="service">
<h3>Naprawa Hulajnóg</h3>
<p>Oferujemy kompleksowe usługi naprawcze dla wszystkich marek hulajnóg elektrycznych. Niezależnie od problemu, naprawimy Twoją hulajnogę szybko i sprawnie.</p>
</article>
<article class="service" class="fade-in">
<article class="service">
<h3>Konserwacja i Przeglądy</h3>
<p>Regularna konserwacja jest kluczem do długowieczności Twojej hulajnogi. Oferujemy przeglądy okresowe, wymianę części i pełną diagnostykę.</p>
</article>
Expand All @@ -46,7 +46,7 @@ <h3>Konserwacja i Przeglądy</h3>
<section id="why-us">
<h2>Dlaczego My?</h2>
<div class="reasons">
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content">
<div class="text">
<h3>Doświadczenie</h3>
Expand All @@ -57,7 +57,7 @@ <h3>Doświadczenie</h3>
</div>
</div>
</article>
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content reverse">
<div class="image">
<img src="img/jakość.png" alt="Jakość" />
Expand All @@ -68,7 +68,7 @@ <h3>Jakość</h3>
</div>
</div>
</article>
<article class="reason" class="fade-in">
<article class="reason">
<div class="reason-content">
<div class="text">
<h3>Zadowoleni Klienci</h3>
Expand Down
6 changes: 3 additions & 3 deletions src/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h2>Profesjonalne usługi serwisowe dla Twojej hulajnogi elektrycznej</h2>
</div>
</section>

<section class="services-overview fade-in">
<section class="services-overview ">
<div class="services-container">
<div class="service-item">
<h3>Naprawa hulajnóg elektrycznych</h3>
Expand All @@ -51,7 +51,7 @@ <h3>Diagnostyka komputerowa</h3>
</div>
</section>

<section class="service-details fade-in">
<section class="service-details ">
<div class="services-container">
<div class="service-detail-item">
<h3>Naprawa hamulców</h3>
Expand All @@ -72,7 +72,7 @@ <h3>Inspekcja stanu technicznego</h3>
</div>
</section>

<section class="cta-container fade-in">
<section class="cta-container ">
<div class="cta-pricing">
<div class="cta-content">
<h2>Chcesz poznać nasze ceny?</h2>
Expand Down
Loading