+ 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.
+
+ If you have any questions concerning my services, would like to request a free, no-commitment quote or sign up for a course or a consultation, feel free to contact me, I'll be happy to help!
+
+
+
+
+
+
+
+
+ );
+}
+
diff --git a/components/Footer.tsx b/components/Footer.tsx
new file mode 100644
index 0000000..e0bd0d2
--- /dev/null
+++ b/components/Footer.tsx
@@ -0,0 +1,80 @@
+'use client';
+
+import { useState } from 'react';
+
+export default function Footer() {
+ const [email, setEmail] = useState('');
+
+ const handleNewsletterSubmit = (e: React.FormEvent) => {
+ e.preventDefault();
+ console.log('Newsletter subscription:', email);
+ alert('Thank you for subscribing!');
+ setEmail('');
+ };
+
+ return (
+
+ );
+}
+
diff --git a/components/Hero.tsx b/components/Hero.tsx
new file mode 100644
index 0000000..d59ba38
--- /dev/null
+++ b/components/Hero.tsx
@@ -0,0 +1,63 @@
+'use client';
+
+import Link from 'next/link';
+import { motion } from 'framer-motion';
+import Image from 'next/image';
+
+export default function Hero() {
+ return (
+
+
+
+
+
+ Multilingual Family Space
+
+
+ Guiding bilingual families and language learners on their multilingual journey
+
+
+
+ Contact Now
+
+
+
+
+
+
+
+
+
+ );
+}
+
diff --git a/components/Navigation.tsx b/components/Navigation.tsx
new file mode 100644
index 0000000..0696a38
--- /dev/null
+++ b/components/Navigation.tsx
@@ -0,0 +1,93 @@
+'use client';
+
+import { useState } from 'react';
+import Link from 'next/link';
+
+export default function Navigation() {
+ const [isMenuOpen, setIsMenuOpen] = useState(false);
+
+ const navItems = [
+ { name: 'Home', href: '#home' },
+ { name: 'Services', href: '#services' },
+ { name: 'About', href: '#about' },
+ ];
+
+ return (
+
+ );
+}
+
diff --git a/components/Values.tsx b/components/Values.tsx
new file mode 100644
index 0000000..ab2def1
--- /dev/null
+++ b/components/Values.tsx
@@ -0,0 +1,193 @@
+'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 (
+
+