'use client'; import { PAGE_TRANSITION } from '@/components/shared/page-transition'; import { cn } from '@/components/ui/core/styling'; import { motion } from 'framer-motion'; import React from 'react'; type PageWrapperProps = { children?: React.ReactNode; } & React.ComponentPropsWithoutRef<'div'>; export function PageWrapper(props: PageWrapperProps) { const { children, className, ...rest } = props; return (
{children}
); }