diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 16:58:20 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 16:58:20 +0300 |
| commit | 294d0121f58df76743ccb752dd8c03616b8b272d (patch) | |
| tree | b27c2c717f7d5f71a81adeacc3a1b95e434362d8 /src/pages/index.astro | |
| parent | 574c262dc170bd22ca0ea7ada08a70244d7fab4f (diff) | |
Add portfolio
Diffstat (limited to 'src/pages/index.astro')
| -rw-r--r-- | src/pages/index.astro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index cd79040..7b5ae89 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -13,6 +13,7 @@ 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'; +import Portfolio from '~/components/widgets/Portfolio.astro'; const metadata = { title: 'CustomWorks – Detailing, wrapping, tuning | Profesjonalne usługi pielęgnacji samochodów – Bydgoszcz', @@ -258,6 +259,26 @@ const metadata = { </Fragment> </Pricing> + <!-- Portfolio **************** --> + + <Portfolio + title="Portfolio" + items={[ + { + src: '~/assets/images/portfolio/portfolio-1.webp', + alt: 'CustomWorks - Przykład pracy detailingowej', + }, + { + src: '~/assets/images/portfolio/portfolio-2.webp', + alt: 'CustomWorks - Przykład pracy detailingowej', + }, + { + src: '~/assets/images/portfolio/portfolio-3.webp', + alt: 'CustomWorks - Przykład pracy detailingowej', + }, + ]} + /> + <!-- Kontakt **************** --> <Steps2 |
