()
| 46 | } |
| 47 | |
| 48 | function DemoStore() { |
| 49 | return ( |
| 50 | <div |
| 51 | className="min-h-[calc(100vh-32px)] text-white p-8 flex items-center justify-center w-full h-full" |
| 52 | style={{ |
| 53 | backgroundImage: |
| 54 | 'radial-gradient(50% 50% at 80% 80%, #f4a460 0%, #8b4513 70%, #1a0f0a 100%)', |
| 55 | }} |
| 56 | > |
| 57 | <div className="bg-white/10 backdrop-blur-lg rounded-xl p-8 shadow-lg flex flex-col gap-4 text-3xl min-w-1/2"> |
| 58 | <h1 className="text-4xl font-bold mb-5">Store Example</h1> |
| 59 | <FirstName /> |
| 60 | <LastName /> |
| 61 | <FullName /> |
| 62 | </div> |
| 63 | </div> |
| 64 | ) |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected