|
4 | 4 | <head> |
5 | 5 | <meta charset="UTF-8"> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
7 | | - <title>InfraScan - Advanced Infrastructure Auditor</title> |
| 7 | + <meta name="description" content="InfraScan is an open-source Infrastructure as Code scanner that identifies security vulnerabilities, cost optimization opportunities, and compliance issues in Terraform, CloudFormation, Kubernetes, and Dockerfile. Scan GitHub repositories for free."> |
| 8 | + <meta name="keywords" content="IaC scanner, Terraform security, CloudFormation audit, Kubernetes scanning, infrastructure audit, security scanner, cost optimization"> |
| 9 | + <meta name="author" content="SolDevelo"> |
| 10 | + <meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1"> |
| 11 | + |
| 12 | + <!-- Open Graph / Facebook --> |
| 13 | + <meta property="og:type" content="website"> |
| 14 | + <meta property="og:url" content="{{ site_domain }}/"> |
| 15 | + <meta property="og:title" content="InfraScan - Free Infrastructure as Code Security Scanner"> |
| 16 | + <meta property="og:description" content="Scan Infrastructure as Code for security vulnerabilities and cost optimization. Supports Terraform, CloudFormation, Kubernetes, and more."> |
| 17 | + |
| 18 | + <!-- Twitter --> |
| 19 | + <meta property="twitter:card" content="summary"> |
| 20 | + <meta property="twitter:url" content="{{ site_domain }}/"> |
| 21 | + <meta property="twitter:title" content="InfraScan - Free Infrastructure as Code Security Scanner"> |
| 22 | + <meta property="twitter:description" content="Scan Infrastructure as Code for security vulnerabilities and cost optimization. Supports Terraform, CloudFormation, Kubernetes, and more."> |
| 23 | + |
| 24 | + <!-- Canonical --> |
| 25 | + <link rel="canonical" href="{{ site_domain }}/"> |
| 26 | + |
| 27 | + <!-- Language --> |
| 28 | + <meta http-equiv="content-language" content="en-US"> |
| 29 | + |
| 30 | + <title>InfraScan - Free Infrastructure as Code Security Scanner | Terraform & CloudFormation Auditor</title> |
| 31 | + |
8 | 32 | {% if google_tag_id %} |
9 | 33 | <!-- Google tag (gtag.js) --> |
10 | 34 | <script async src="https://www.googletagmanager.com/gtag/js?id={{ google_tag_id }}"></script> |
|
16 | 40 | gtag('config', '{{ google_tag_id }}'); |
17 | 41 | </script> |
18 | 42 | {% endif %} |
| 43 | + |
| 44 | + <!-- JSON-LD Structured Data --> |
| 45 | + <script type="application/ld+json"> |
| 46 | + { |
| 47 | + "@context": "https://schema.org", |
| 48 | + "@type": "SoftwareApplication", |
| 49 | + "name": "InfraScan", |
| 50 | + "description": "Open-source Infrastructure as Code scanner for security and cost optimization", |
| 51 | + "url": "{{ site_domain }}", |
| 52 | + "applicationCategory": "DeveloperApplication", |
| 53 | + "offers": { |
| 54 | + "@type": "Offer", |
| 55 | + "price": "0", |
| 56 | + "priceCurrency": "USD" |
| 57 | + }, |
| 58 | + "creator": { |
| 59 | + "@type": "Organization", |
| 60 | + "name": "SolDevelo", |
| 61 | + "url": "https://soldevelo.com" |
| 62 | + }, |
| 63 | + "operatingSystem": "Web-based", |
| 64 | + "featureList": ["Terraform scanning", "CloudFormation audit", "Kubernetes manifest analysis", "Dockerfile security scan", "Cost optimization detection", "Security vulnerability detection"] |
| 65 | + } |
| 66 | + </script> |
| 67 | + |
19 | 68 | <link rel="preconnect" href="https://fonts.googleapis.com"> |
20 | 69 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
21 | 70 | <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
22 | 71 | <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}?v={{ static_version }}"> |
| 72 | + |
| 73 | + <!-- Preload critical resources --> |
| 74 | + <link rel="preload" as="style" href="{{ url_for('static', filename='style.css') }}?v={{ static_version }}"> |
23 | 75 | </head> |
24 | 76 |
|
25 | 77 | <body> |
|
0 commit comments