'use client'; import { motion } from 'motion/react'; import React from 'react'; export default function Template({ children }: { children: React.ReactNode }) { return ( {children} ); }