'use client'; import Footer from '@/components/footer/FooterAuthDefault'; import NavLink from '@/components/link/NavLink'; import { Box, Flex, Icon, Link, Text } from '@chakra-ui/react'; import { PropsWithChildren } from 'react'; import { FaChevronLeft } from 'react-icons/fa'; interface DefaultAuthLayoutProps extends PropsWithChildren { children: JSX.Element; illustrationBackground: string; viewProp: any; } export default function DefaultAuthLayout(props: DefaultAuthLayoutProps) { const { children, illustrationBackground } = props; return ( Back to the website {children}