Wire admin studio SSR and search infrastructure

This commit is contained in:
2026-05-01 11:46:06 +02:00
parent 257b0dbef6
commit 18cea8b0f0
329 changed files with 197465 additions and 2741 deletions

View File

@@ -2,6 +2,7 @@ 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()
@@ -17,13 +18,16 @@ export default function ProfileGallery() {
countryName,
isOwner,
profileUrl,
seo = {},
} = props
const username = user.username || user.name
const displayName = user.name || user.username || 'Creator'
return (
<div className="min-h-screen pb-16">
<>
<SeoHead seo={seo} />
<div className="min-h-screen pb-16">
<ProfileHero
user={user}
profile={profile}
@@ -73,5 +77,6 @@ export default function ProfileGallery() {
/>
</div>
</div>
</>
)
}