diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index e095fe0..71567a1 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,7 +1,7 @@ --- import Layout from '~/layouts/PageLayout.astro'; -import Hero from '~/components/widgets/Hero2.astro'; +import Hero from '~/components/widgets/HeroBackground.astro'; import Features2Custom from '~/components/widgets/Features2Custom.astro'; import Steps2 from '~/components/widgets/Steps2.astro'; import Content from '~/components/widgets/Content.astro'; @@ -26,15 +26,21 @@ const metadata = { href: '#contact', icon: 'tabler:mail', }, - { text: 'Usługi', href: '#features' }, + { + text: 'Usługi', + href: '#features', + style: 'background-color: white !important; color: #111827 !important; border-color: white !important;', + class: 'hover:bg-gray-100 hover:border-gray-200', + }, ]} image={{ src: '~/assets/images/hero-image.webp', alt: 'CustomWorks - Profesjonalne usługi detailingu samochodowego', }} + logoPath="~/assets/images/customworks-logo.png" > <Fragment slot="title"> - <span class="text-accent dark:text-white"> + <span class="text-white"> <span class="block md:hidden">CustomWorks</span> <span class="hidden md:block">Detailing, wrapping, tuning</span> </span> |
