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