"use client" import { useRef } from "react" import { motion, useScroll, useTransform } from "framer-motion" import { Github, Mail, ExternalLink, Send } from "lucide-react" import { Button } from "@/components/ui/button" export default function ContactSection() { const sectionRef = useRef(null) const { scrollYProgress } = useScroll({ target: sectionRef, offset: ["start end", "end start"], }) const y1 = useTransform(scrollYProgress, [0, 1], ["20%", "-20%"]) const y2 = useTransform(scrollYProgress, [0, 1], ["10%", "-10%"]) return (
{/* Background effects */}
{/* Animated circles */}

联系我

项目想要讨论?或是只是想要聊聊天?😉

如果您有任何问题或合作意向,欢迎通过以下方式联系我:

grtsinry43@outlook.com
github.com/grtsinry43
blog.grtsinry43.com
{/* Decorative elements */}
) }