import { Link } from '@inertiajs/react'; import { ChevronsRight, Home } from 'lucide-react'; interface Props { innerPage: Page; } const Hero = ({ innerPage }: Props) => { return (

{innerPage.name}

{innerPage.slug}
); }; export default Hero;