"use client"; import { MapPin, Waves } from "lucide-react"; import { Button } from "@/components/ui/button"; import { motion, useScroll, useTransform } from "framer-motion"; import { useRef } from "react"; export function Hero() { const ref = useRef(null); const { scrollYProgress } = useScroll({ target: ref, offset: ["start start", "end start"], }); const y = useTransform(scrollYProgress, [0, 1], ["0%", "50%"]); const textY = useTransform(scrollYProgress, [0, 1], ["0%", "20%"]); const opacity = useTransform(scrollYProgress, [0, 0.8], [1, 0]); return (
Dźwirzyno • Polskie Wybrzeże Domki Letniskowe{" "} SŁONECZKO Spokojny wypoczynek nad Bałtykiem w otoczeniu natury
450m od morza
900m od jeziora Resko
); }