Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 985c3ca6f1 | |||
| 6c28151155 |
134
src/app/page.tsx
134
src/app/page.tsx
@@ -29,13 +29,21 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Usługi", id: "uslugi"},
|
name: "Usługi",
|
||||||
|
id: "uslugi",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Produkty", id: "produkty"},
|
name: "Produkty",
|
||||||
|
id: "produkty",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Opinie", id: "opinie"},
|
name: "Opinie",
|
||||||
|
id: "opinie",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Kontakt", id: "kontakt"},
|
name: "Kontakt",
|
||||||
|
id: "kontakt",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
brandName="Sklep Medyczny Otwock"
|
brandName="Sklep Medyczny Otwock"
|
||||||
/>
|
/>
|
||||||
@@ -44,14 +52,19 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroLogoBillboardSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars"}}
|
variant: "gradient-bars",
|
||||||
|
}}
|
||||||
logoText="Sklep Medyczno-Rehabilitacyjny Otwock"
|
logoText="Sklep Medyczno-Rehabilitacyjny Otwock"
|
||||||
description="Profesjonalny sprzęt medyczny i rehabilitacyjny. Kompleksowa obsługa – sprzedaż, wypożyczalnia i serwis. Realizacja zleceń NFZ. Tel: +48 606 562 385 | E-mail: biurompr@gmail.com"
|
description="Profesjonalny sprzęt medyczny i rehabilitacyjny. Kompleksowa obsługa – sprzedaż, wypożyczalnia i serwis. Realizacja zleceń NFZ."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Zadzwoń teraz", href: "tel:+48606562385"},
|
text: "Zadzwoń teraz",
|
||||||
|
href: "tel:+48606562385",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: "Zobacz produkty", href: "#produkty"},
|
text: "Zobacz produkty",
|
||||||
|
href: "#produkty",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-living-room-with-transportation-equipment-crutches-couch-empty-space-with-mobility-objects-help-patient-with-physical-disability-giving-aid-recover-from-walking-problem_482257-39011.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/nobody-living-room-with-transportation-equipment-crutches-couch-empty-space-with-mobility-objects-help-patient-with-physical-disability-giving-aid-recover-from-walking-problem_482257-39011.jpg?_wi=1"
|
||||||
@@ -67,11 +80,17 @@ export default function LandingPage() {
|
|||||||
description="Zapewniamy pełne wsparcie w doborze i serwisowaniu sprzętu medycznego w Otwocku."
|
description="Zapewniamy pełne wsparcie w doborze i serwisowaniu sprzętu medycznego w Otwocku."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "15+", title: "Lat doświadczenia"},
|
value: "15+",
|
||||||
|
title: "Lat doświadczenia",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
value: "100%", title: "Profesjonalizmu"},
|
value: "100%",
|
||||||
|
title: "Profesjonalizmu",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
value: "NFZ", title: "Refundacja zleceń"},
|
value: "NFZ",
|
||||||
|
title: "Refundacja zleceń",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/female-doctor-helping-patient-with-exercise_23-2148328469.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/female-doctor-helping-patient-with-exercise_23-2148328469.jpg"
|
||||||
imageAlt="Usługi rehabilitacyjne"
|
imageAlt="Usługi rehabilitacyjne"
|
||||||
@@ -88,17 +107,47 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1", name: "Aktywna orteza stawu skokowego", price: "45,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/view-man-with-prosthetic-legs-white-sneakers_1268-21351.jpg", imageAlt: "Orteza skokowa"},
|
id: "p1",
|
||||||
|
name: "Aktywna orteza stawu skokowego",
|
||||||
|
price: "45,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/view-man-with-prosthetic-legs-white-sneakers_1268-21351.jpg",
|
||||||
|
imageAlt: "Orteza skokowa",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "p2", name: "Orteza stawu kolanowego DUOMAX", price: "250,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-energy-drink-mat_23-2148222168.jpg", imageAlt: "Orteza kolanowa"},
|
id: "p2",
|
||||||
|
name: "Orteza stawu kolanowego DUOMAX",
|
||||||
|
price: "250,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-energy-drink-mat_23-2148222168.jpg",
|
||||||
|
imageAlt: "Orteza kolanowa",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "p3", name: "Podpórka rehabilitacyjna 4-kołowa", price: "1000,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-senior-woman-with-walking-frame_23-2149357090.jpg", imageAlt: "Podpórka"},
|
id: "p3",
|
||||||
|
name: "Podpórka rehabilitacyjna 4-kołowa",
|
||||||
|
price: "1000,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-senior-woman-with-walking-frame_23-2149357090.jpg",
|
||||||
|
imageAlt: "Podpórka",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "p4", name: "Kula pachowa", price: "59,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-with-broken-foot-using-crutches-holding-his-x-ray-grey-wall-pain-disable-legs-broken-accident-foot_140725-116583.jpg", imageAlt: "Kula"},
|
id: "p4",
|
||||||
|
name: "Kula pachowa",
|
||||||
|
price: "59,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-with-broken-foot-using-crutches-holding-his-x-ray-grey-wall-pain-disable-legs-broken-accident-foot_140725-116583.jpg",
|
||||||
|
imageAlt: "Kula",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "p5", name: "Chwytak", price: "110,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-wheelchair-shaking-hands_23-2148497280.jpg", imageAlt: "Chwytak"},
|
id: "p5",
|
||||||
|
name: "Chwytak",
|
||||||
|
price: "110,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-wheelchair-shaking-hands_23-2148497280.jpg",
|
||||||
|
imageAlt: "Chwytak",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "p6", name: "Piłeczka rehabilitacyjna JAJKO", price: "33,00 zł", imageSrc: "http://img.b2bpic.net/free-photo/hand-with-balloons-stripes-lgbt-colors_23-2148165457.jpg", imageAlt: "Piłeczka"},
|
id: "p6",
|
||||||
|
name: "Piłeczka rehabilitacyjna JAJKO",
|
||||||
|
price: "33,00 zł",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/hand-with-balloons-stripes-lgbt-colors_23-2148165457.jpg",
|
||||||
|
imageAlt: "Piłeczka",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
title="Nasze Produkty"
|
title="Nasze Produkty"
|
||||||
description="Wysokiej jakości sprzęt rehabilitacyjny i medyczny dostępny od ręki."
|
description="Wysokiej jakości sprzęt rehabilitacyjny i medyczny dostępny od ręki."
|
||||||
@@ -113,15 +162,25 @@ export default function LandingPage() {
|
|||||||
author="Marta Rogala"
|
author="Marta Rogala"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg", alt: "Klient 1"},
|
src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg",
|
||||||
|
alt: "Klient 1",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-positive-young-woman-wearing-blouse_1262-2298.jpg", alt: "Klient 2"},
|
src: "http://img.b2bpic.net/free-photo/portrait-positive-young-woman-wearing-blouse_1262-2298.jpg",
|
||||||
|
alt: "Klient 2",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-young-doctor-wearing-stethoscope-medical-gown-bite-tongue-white-wall_141793-27086.jpg", alt: "Klient 3"},
|
src: "http://img.b2bpic.net/free-photo/smiling-young-doctor-wearing-stethoscope-medical-gown-bite-tongue-white-wall_141793-27086.jpg",
|
||||||
|
alt: "Klient 3",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/expressive-senior-woman-posing_344912-2987.jpg", alt: "Klient 4"},
|
src: "http://img.b2bpic.net/free-photo/expressive-senior-woman-posing_344912-2987.jpg",
|
||||||
|
alt: "Klient 4",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-people-helping_23-2149142777.jpg", alt: "Klient 5"},
|
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-people-helping_23-2149142777.jpg",
|
||||||
|
alt: "Klient 5",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="blur-reveal"
|
avatarsAnimation="blur-reveal"
|
||||||
@@ -132,10 +191,11 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain"}}
|
variant: "plain",
|
||||||
|
}}
|
||||||
tag="Kontakt"
|
tag="Kontakt"
|
||||||
title="Odwiedź nas w Otwocku"
|
title="Odwiedź nas w Otwocku"
|
||||||
description="Znajdziesz nas przy ul. Karczewskiej 12. Zapraszamy od poniedziałku do piątku! Telefon: +48 606 562 385 | E-mail: biurompr@gmail.com"
|
description="Znajdziesz nas przy ul. Karczewskiej 12. Zapraszamy od poniedziałku do piątku!"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/nobody-living-room-with-transportation-equipment-crutches-couch-empty-space-with-mobility-objects-help-patient-with-physical-disability-giving-aid-recover-from-walking-problem_482257-39011.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/nobody-living-room-with-transportation-equipment-crutches-couch-empty-space-with-mobility-objects-help-patient-with-physical-disability-giving-aid-recover-from-walking-problem_482257-39011.jpg?_wi=2"
|
||||||
imageAlt="Sklep medyczny Otwock"
|
imageAlt="Sklep medyczny Otwock"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
@@ -149,21 +209,33 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Sprzedaż", href: "#produkty"},
|
label: "Sprzedaż",
|
||||||
|
href: "#produkty",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Wypożyczalnia", href: "#uslugi"},
|
label: "Wypożyczalnia",
|
||||||
|
href: "#uslugi",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Serwis", href: "#uslugi"},
|
label: "Serwis",
|
||||||
|
href: "#uslugi",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "NFZ Refundacja", href: "#uslugi"},
|
label: "NFZ Refundacja",
|
||||||
|
href: "#uslugi",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Opinie", href: "#opinie"},
|
label: "Opinie",
|
||||||
|
href: "#opinie",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Kontakt", href: "#kontakt"},
|
label: "Kontakt",
|
||||||
|
href: "#kontakt",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -173,4 +245,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user