()
| 4 | */ |
| 5 | |
| 6 | export function StructuredData() { |
| 7 | const structuredData = { |
| 8 | '@context': 'https://schema.org', |
| 9 | '@type': 'WebApplication', |
| 10 | name: 'Linite', |
| 11 | applicationCategory: 'DeveloperApplication', |
| 12 | operatingSystem: 'Linux', |
| 13 | description: |
| 14 | 'Select apps from our curated catalog and generate a single command to install everything on your Linux distribution. Supports apt, dnf, pacman, Flatpak, Snap, and more.', |
| 15 | url: 'https://linite.sagyamthapa.com.np/', |
| 16 | offers: { |
| 17 | '@type': 'Offer', |
| 18 | price: '0', |
| 19 | priceCurrency: 'USD', |
| 20 | }, |
| 21 | featureList: [ |
| 22 | 'Curated app catalog', |
| 23 | 'Support for multiple Linux distributions', |
| 24 | 'Support for multiple package managers', |
| 25 | 'Single command installation', |
| 26 | 'Flatpak support', |
| 27 | 'Snap support', |
| 28 | 'AUR support', |
| 29 | ], |
| 30 | softwareRequirements: 'Linux operating system', |
| 31 | permissions: 'sudo access for package installation', |
| 32 | }; |
| 33 | |
| 34 | return ( |
| 35 | <script |
| 36 | type="application/ld+json" |
| 37 | dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }} |
| 38 | /> |
| 39 | ); |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected