Update src/app/strony-internetowe-dla-malych-firm/page.tsx

This commit is contained in:
2026-05-10 08:50:13 +00:00
parent bb97340db3
commit cdc2618a70

View File

@@ -26,30 +26,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Start",
id: "/",
},
{
name: "Oferta",
id: "/strony-internetowe-dla-malych-firm",
},
{
name: "Realizacje",
id: "/realizacje",
},
{
name: "Proces",
id: "/proces-wspolpracy",
},
{
name: "O nas",
id: "/o-nimble-path",
},
{
name: "Kontakt",
id: "/kontakt",
},
{ name: "Start", id: "/" },
{ name: "Oferta", id: "/strony-internetowe-dla-malych-firm" },
{ name: "Realizacje", id: "/realizacje" },
{ name: "Proces", id: "/proces-wspolpracy" },
{ name: "O nas", id: "/o-nimble-path" },
{ name: "Kontakt", id: "/kontakt" }
]}
brandName="Nimble Path"
/>
@@ -63,22 +45,8 @@ export default function LandingPage() {
title="Co zawiera nasza oferta?"
description="Kompleksowa obsługa od A do Z."
features={[
{
title: "Projekt graficzny",
description: "Indywidualny design.",
bentoComponent: "reveal-icon",
icon: Palette,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-woman-posing_23-2149457762.jpg?_wi=2",
imageAlt: "person professional portrait clean studio",
},
{
title: "Optymalizacja SEO",
description: "Widoczność w Google.",
bentoComponent: "reveal-icon",
icon: Search,
imageSrc: "http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-man-scrolling-instagram-threads-page_482257-116826.jpg?_wi=3",
imageAlt: "person professional portrait clean studio",
},
{ title: "Projekt graficzny", description: "Indywidualny design.", bentoComponent: "reveal-icon", icon: Palette },
{ title: "Optymalizacja SEO", description: "Widoczność w Google.", bentoComponent: "reveal-icon", icon: Search }
]}
/>
</div>
@@ -90,17 +58,10 @@ export default function LandingPage() {
title="Pytania o ofertę"
description="Więcej szczegółów."
faqs={[
{
id: "q1",
title: "Jak długo trwa projekt?",
content: "Zazwyczaj około 2-4 tygodnie.",
},
{
id: "q2",
title: "Czy będę mógł edytować stronę?",
content: "Tak, dostarczamy intuicyjny panel.",
},
{ id: "q1", title: "Jak długo trwa projekt?", content: "Zazwyczaj około 2-4 tygodnie." },
{ id: "q2", title: "Czy będę mógł edytować stronę?", content: "Tak, dostarczamy intuicyjny panel." }
]}
faqsAnimation="slide-up"
/>
</div>
@@ -108,40 +69,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Nimble Path"
columns={[
{
title: "Nawigacja",
items: [
{
label: "Start",
href: "/",
},
{
label: "Oferta",
href: "/strony-internetowe-dla-malych-firm",
},
{
label: "Kontakt",
href: "/kontakt",
},
],
},
{
title: "Legal",
items: [
{
label: "Polityka prywatności",
href: "#",
},
{
label: "Polityka cookies",
href: "#",
},
],
},
{ title: "Nawigacja", items: [{ label: "Start", href: "/" }, { label: "Oferta", href: "/strony-internetowe-dla-malych-firm" }, { label: "Kontakt", href: "/kontakt" }] },
{ title: "Legal", items: [{ label: "Polityka prywatności", href: "#" }, { label: "Polityka cookies", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}