'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 About() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); // Prevent hydration mismatch by using consistent initial state const shouldAnimate = mounted && isInView; return (
Monika Zatylny

About Me

Monika Zatylny, MA - Language Coach

I like helping people find solutions that work. I've been studying multilingualism from different perspectives for the past 20 years - as a linguist, teacher and coach/counsellor - so I see a bigger picture than most people who are used to just one personal or occupational perspective.

I listen to really hear what you're saying and help you understand, strategise and grow.

My thesis focused on bilingualism and its challenges related with pronunciation and spelling. I've been teaching foreign languages in Austria, Poland, Spain and the Netherlands for over 20 years.

); }