summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-22 16:33:05 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-22 16:33:05 +0300
commit6924fc24c8d7c4d9281492ff12de583ef26f8927 (patch)
tree50fedb1340827f4626e66cb92e1efc8f6e281aad /src/pages
parent85a31139e7d11996da5de5d09ad3f821c60e232d (diff)
Add initial pricing
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/index.astro89
1 files changed, 88 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index a40b445..cd79040 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -12,6 +12,7 @@ import FAQs from '~/components/widgets/FAQs.astro';
import Stats from '~/components/widgets/Stats.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
import CallToActionImage from '~/components/widgets/CallToActionImage.astro';
+import Pricing from '~/components/widgets/Pricing.astro';
const metadata = {
title: 'CustomWorks – Detailing, wrapping, tuning | Profesjonalne usługi pielęgnacji samochodów – Bydgoszcz',
@@ -133,7 +134,7 @@ const metadata = {
</Fragment>
</Content>
- <!-- SEO2**************** -->
+ <!-- SEO2 **************** -->
<Content
isAfterContent
@@ -171,6 +172,92 @@ const metadata = {
</Fragment>
</Content>
+ <!-- Cennik **************** -->
+
+ <Pricing
+ title="Cennik"
+ id="pricing"
+ items={[
+ {
+ title: 'Mycie',
+ entries: [
+ { description: 'Mycie Detailingowe<br>Standard', price: 'od 100 zł' },
+ { description: 'Mycie Detailingowe<br>Premium', price: 'od 180 zł' },
+ ],
+ },
+ {
+ title: 'Zabezpieczenie lakieru',
+ entries: [
+ { description: 'Wosk', price: 'od 300 zł' },
+ { description: 'Powłoka kwarcowa 12m.', price: 'od 500 zł' },
+ { description: 'Powłoka ceramiczna 24m.', price: 'od 900 zł' },
+ { description: 'Powłoka ceramiczna 36m.', price: 'od 1200 zł' },
+ { description: 'Powłoka ceramiczna 60m.', price: 'od 2000 zł' },
+ { description: 'Niewidzialna wycieraczka na przednią szybę', price: 'od 150 zł' },
+ { description: 'Niewidzialna wycieraczka na wszystkie szyby', price: 'od 350 zł' },
+ { description: 'Zabezpieczenie frontu felg powłoką ceramiczną', price: 'od 400 zł' },
+ { description: 'Zabezpieczenie całych felg powłoką ceramiczną', price: 'od 800 zł' },
+ ],
+ },
+ {
+ title: 'Wnętrze',
+ entries: [
+ { description: 'Podstawowe czyszczenie<br>+ mycie szyb', price: 'od 150 zł' },
+ { description: 'Detailingowe czyszczenie wnętrza', price: 'od 300 zł' },
+ { description: 'Pranie foteli', price: 'od 300 zł' },
+ { description: 'Pranie premium<br>(wszystkie elementy + demontaż foteli)', price: 'od 700 zł' },
+ { description: 'Czyszczenie skór', price: 'od 300 zł' },
+ { description: 'Konserwacja skór', price: 'od 200 zł' },
+ { description: 'Zabezpieczenie skór', price: 'od 250 zł' },
+ ],
+ },
+ {
+ title: 'Renowacja lakieru',
+ entries: [
+ { description: 'One Step', price: 'od 500 zł' },
+ { description: 'Dwuetapowa korekta lakieru (usuwa od 70% do 90% rys)', price: 'od 900 zł' },
+ { description: 'Wieloetapowa korekta lakieru (usuwa od 90% do 99% rys)', price: 'od 1300 zł' },
+ ],
+ },
+
+ {
+ title: 'Zabezpieczanie lakieru folią PPF',
+ entries: [
+ { description: 'Pakiet „Full Body"', price: 'od 12000 zł' },
+ { description: 'Pakiet „Full Front"', price: 'od 5000 zł' },
+ { description: 'Pakiet „Mini"', price: 'od 700 zł' },
+ { description: 'Reflektory', price: 'od 240 zł' },
+ { description: 'Próg bagażnika', price: 'od 250 zł' },
+ { description: 'Wnęki klamek', price: 'od 200 zł' },
+ { description: 'Przyciemnianie lamp', price: 'od 250 zł' },
+ ],
+ },
+ {
+ title: 'Zmiana koloru folią',
+ entries: [
+ { description: 'Całe auto', price: 'od 7000 zł' },
+ { description: 'Dach', price: 'od 700 zł' },
+ { description: 'Lusterka', price: 'od 400 zł' },
+ { description: 'Dechroming', price: 'od 800 zł' },
+ ],
+ },
+ ]}
+ actions={[
+ {
+ variant: 'primary',
+ text: 'Pobierz cennik PDF',
+ href: '/cennik_2023.pdf',
+ icon: 'tabler:download',
+ download: true,
+ },
+ ]}
+ >
+ <Fragment slot="disclaimer">
+ Podane ceny są cenami orientacyjnymi, dokładna wycena podawana jest po oględzinach pojazdu.<br><br>
+ Lista usług jest orientacyjna i ogólna, jeśli jesteś zainteresowany czymś nietypowym to zapraszam do kontaktu, postaram się pomóc.
+ </Fragment>
+ </Pricing>
+
<!-- Kontakt **************** -->
<Steps2