'use client'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef, useState, useEffect } from 'react'; import Image from 'next/image'; export default function Values() { const sectionRef = useRef(null); const isInView = useInView(sectionRef, { once: true, margin: '-100px' }); const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); // Prevent hydration mismatch by using consistent initial state const shouldAnimate = mounted && isInView; const services = [ { title: 'Bilingual Upbringing', description: 'Living in a multilingual home is not always easy. Parents often lack guidance and support, and without a clear plan some children are left confused and unable to construct a coherent identity around their fragmented language skills. I\'m here to guide both (future) parents and adult bilinguals reconnecting with their roots.', icon: ( ), image: 'https://kagi.com/proxy/OIP.UAcj5KYX7RKEhVZ6DRqGsgHaE7?c=MvlWCDdicm1aK3zpADFz56M-jyjW-k_WkjPX8kg3kd7yGoRM-QOn_I1vlzUgMSdd3ZA0VkTSDpsSnaT8MntfyiWi4KFJRlP6WmtGvfIyCytNxoxitLvzxtR-qUOcdepb', }, { title: 'Polish Lessons', description: 'It is exciting to be in a relationship with a speaker of a different language. You are curious, motivated and you want to start speaking immediately. It sometimes takes a few Duolingo levels and a few \'classes\' with your partner before you understand it takes a professional teacher to do the job. I\'m here to assist you.', icon: ( ), image: 'https://kagi.com/proxy/images?c=_m3km2RjA3G0qleowsZXHZb9NEn0fSsEYIHbKzMDyAFb4nUPIanknmQV_g0rmdCIsgzAMsPq08VleluyScXQQ4izz3KxqIw42uNpJM0UVdSW3vFxwNsADK8GLjDKETNDP1zByVU0b1ao6Y7_TdQpnQ%3D%3D', }, ]; const qualifications = [ { title: 'MA in Linguistics', description: 'My thesis focused on bilingualism and its challenges related with pronunciation and spelling', icon: ( ), }, { title: '20 Years of Experience', description: 'I\'ve been teaching foreign languages in Austria, Poland, Spain and the Netherlands', icon: ( ), }, { title: 'Speech Therapy', description: 'During my professional education I mastered the basics of speech therapy and vocal emission', icon: ( ), }, { title: 'Dyslexia Support', description: 'I completed a professional training in "Supporting learners in difficulties with reading and writing"', icon: ( ), }, { title: 'Coaching and Counseling', description: 'I\'m a certified junior coach/counsellor and work with individual clients in Polish and English', icon: ( ), }, { title: 'Improv Theatre', description: 'I love theatre, comedy and improvisation! My hobby, and teaching tool is improvised comedy and physical theatre.', icon: ( ), }, ]; return (

Services

{services.map((service, index) => ( {service.image && (
{service.title}
)}
{service.icon}

{service.title}

{service.description}

))}

Qualifications & Experience

{qualifications.map((qual, index) => (
{qual.icon}

{qual.title}

{qual.description}

))}
); }