Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aaa62997c6 | |||
| 13874741ff |
@@ -197,14 +197,15 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Nájdete nás tu"
|
||||
description="Alvinczyho 6, 040 01 Košice | 0903 903 773"
|
||||
title="Napíšte nám"
|
||||
description="Máte špeciálne požiadavky alebo sa chcete na niečo spýtať? Sme tu pre vás!"
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Vaše meno"},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Váš e-mail"},
|
||||
{ name: "name", type: "text", placeholder: "Meno a priezvisko", required: true },
|
||||
{ name: "email", type: "email", placeholder: "E-mailová adresa", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Telefónne číslo" },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Vaša správa...", rows: 4, required: true }}
|
||||
buttonText="Odoslať správu"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bakery-shop-gourmet-concept_53876-163311.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -212,25 +213,28 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Domáca Pekáreň"
|
||||
copyrightText="© 2025 Domáca Pekáreň Košice | Všetky práva vyhradené"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigácia", items: [
|
||||
{
|
||||
label: "Domov", href: "#hero"},
|
||||
{
|
||||
label: "Produkty", href: "#products"},
|
||||
{
|
||||
label: "Kontakt", href: "#contact"},
|
||||
{ label: "Domov", href: "#hero" },
|
||||
{ label: "O nás", href: "#about" },
|
||||
{ label: "Produkty", href: "#products" },
|
||||
{ label: "Kontakt", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Informácie", items: [
|
||||
{
|
||||
label: "O nás", href: "#about"},
|
||||
{
|
||||
label: "Otváracie hodiny", href: "#"},
|
||||
{
|
||||
label: "Ochrana údajov", href: "#"},
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Alvinczyho 6, Košice", href: "https://maps.google.com" },
|
||||
{ label: "0903 903 773", href: "tel:0903903773" },
|
||||
{ label: "pekaren@kosice.sk", href: "mailto:pekaren@kosice.sk" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Právne", items: [
|
||||
{ label: "Ochrana osobných údajov", href: "#" },
|
||||
{ label: "Obchodné podmienky", href: "#" },
|
||||
{ label: "Cookies", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -239,4 +243,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user