From c707c1ce0a9fe132001748ceaf1388d4f0cab199 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 09:31:10 +0000 Subject: [PATCH] Update src/app/adoption-process/page.tsx --- src/app/adoption-process/page.tsx | 240 ++++++++---------------------- 1 file changed, 65 insertions(+), 175 deletions(-) diff --git a/src/app/adoption-process/page.tsx b/src/app/adoption-process/page.tsx index a43d1e9..7fd4362 100644 --- a/src/app/adoption-process/page.tsx +++ b/src/app/adoption-process/page.tsx @@ -2,50 +2,15 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { CheckCircle } from 'lucide-react'; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; export default function AdoptionProcessPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Kittens", id: "kittens" }, - { name: "Process", id: "process" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - title: "Nawigacja", - items: [ - { label: "Home", href: "/" }, - { label: "O nas", href: "/about" }, - { label: "Kociaki", href: "/kittens" }, - { label: "Proces adopcji", href: "/adoption-process" }, - ], - }, - { - title: "Kontakt", - items: [ - { label: "Zadzwoń", href: "tel:+48123456789" }, - { label: "Email", href: "mailto:info@coonkitty.pl" }, - { label: "Wizyta", href: "#" }, - { label: "Formularz kontaktu", href: "/contact" }, - ], - }, - { - title: "Społeczność", - items: [ - { label: "Facebook", href: "https://facebook.com" }, - { label: "Instagram", href: "https://instagram.com" }, - { label: "Google Reviews", href: "#" }, - { label: "Blog", href: "#" }, - ], - }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Kittens", id: "/kittens" }, + { name: "Process", id: "/adoption-process" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -66,146 +31,71 @@ export default function AdoptionProcessPage() { brandName="CoonKitty" navItems={navItems} button={{ - text: "📞 Call Now", - href: "tel:+48123456789", - }} + text: "📞 Call Now", href: "tel:+48123456789"}} /> -
- -
+
+
+

Proces adopcji Maine Coona

+

+ Nasz proces adopcji jest przejrzysty, transparentny i skupiony na znalezieniu idealnego dopasowania między kotkiem a rodzinę. +

-
- -
+
+
+

Krok 1: Wstępna konsultacja

+

+ Zaczynamy od rozmowy, aby zrozumieć Twoje oczekiwania, styl życia i czy Maine Coon to idealna rasa dla Ciebie. Pytamy o doświadczenie z kotkami, przestrzeń mieszkaniową i zobowiązanie czasowe. +

+
-
- -
+
+

Krok 2: Poznaj dostępne kociaki

+

+ Pokazujemy Ci nasze dostępne kociaki. Jeśli jeszcze nie mamy idealnego kandydata, możesz wpisać się na listę rezerwacji dla przyszłych miotów. +

+
- + +
+

Gwarancje i wsparcie

+
    +
  • Gwarancja zdrowia przez 30 dni od adopcji
  • +
  • Pełne badania weterynaryjne i certyfikat +
  • Wsparcie ponad życie kociaka
  • +
  • Możliwość zwrotu, jeśli coś pójdzie nie tak
  • +
+
+ +
+ + Skontaktuj się z nami + +
+
); -} \ No newline at end of file +} -- 2.49.1