page.tsx 561 B

123456789101112131415161718
  1. 'use client'
  2. export default function MinioConsolePage() {
  3. return (
  4. <div className="flex h-full flex-col">
  5. <div className="mb-4 flex items-center justify-between">
  6. <h1 className="text-lg font-bold text-white">MinIO Console</h1>
  7. </div>
  8. <div className="flex-1 overflow-hidden rounded-lg border border-white/10">
  9. <iframe
  10. src="https://api.photoplaces.ru/minio"
  11. className="h-full w-full"
  12. sandbox="allow-scripts allow-forms allow-same-origin allow-popups"
  13. />
  14. </div>
  15. </div>
  16. )
  17. }