'use client'; import { motion } from 'framer-motion'; import { ReactNode } from 'react'; interface FooterSectionProps { title: string; children: ReactNode; delay: number; } export const FooterSection = ({ title, children, delay }: FooterSectionProps) => { return (

{title}

); };