import React from 'react'
import { usePage } from '@inertiajs/react'
import ProfileHero from '../../components/profile/ProfileHero'
import ProfileGalleryPanel from '../../components/profile/ProfileGalleryPanel'
import SeoHead from '../../components/seo/SeoHead'
export default function ProfileGallery() {
const { props } = usePage()
const {
user,
profile,
artworks,
featuredArtworks,
followerCount,
viewerIsFollowing,
heroBgUrl,
leaderboardRank,
countryName,
isOwner,
profileUrl,
seo = {},
} = props
const username = user.username || user.name
const displayName = user.name || user.username || 'Creator'
return (
<>
Public Gallery
Browse published work with the same infinite-scroll gallery used across the profile experience.