|
1 | 1 | @page "/"
|
| 2 | +@using MyDevTools.Services |
| 3 | +@inject SeoService SeoService |
2 | 4 |
|
3 |
| -<PageTitle>My Dev Tools</PageTitle> |
| 5 | +<PageTitle>My Dev Tools - Free Online Developer Tools</PageTitle> |
| 6 | +<HeadContent> |
| 7 | + <meta name="description" content="Free online developer tools including JSON formatter, SQL formatter, GUID generator, hash generator, and more. All processing done locally in your browser - no data sent over the internet." /> |
| 8 | + <meta name="keywords" content="developer tools, JSON formatter, SQL formatter, GUID generator, hash generator, URL encoder, QR code generator, JWT decoder, developer utilities" /> |
| 9 | + <meta property="og:title" content="My Dev Tools - Free Online Developer Tools" /> |
| 10 | + <meta property="og:description" content="Free online developer tools including JSON formatter, SQL formatter, GUID generator, hash generator, and more. All processing done locally in your browser." /> |
| 11 | + <meta property="og:type" content="website" /> |
| 12 | + <meta property="og:url" content="https://mydevtools.org" /> |
| 13 | + <link rel="canonical" href="https://mydevtools.org" /> |
| 14 | + <script type="application/ld+json"> |
| 15 | + @SeoService.GetStructuredData() |
| 16 | + </script> |
| 17 | +</HeadContent> |
4 | 18 |
|
5 | 19 | <!-- Hero Section -->
|
6 |
| -<section class="hero-section bg-dark text-white text-center"> |
| 20 | +<section class="hero-section bg-dark text-white text-center" aria-label="Introduction"> |
7 | 21 | <div class="container">
|
8 |
| - <img src="/main-logo-white-transparent.svg" alt="My Dev Tools logo" /> |
| 22 | + <img src="/main-logo-white-transparent.svg" alt="My Dev Tools - Free Online Developer Tools" width="200" height="200" /> |
| 23 | + <h1 class="display-4 mt-3">My Dev Tools</h1> |
9 | 24 | <p class="lead">No user input data sent over the internet!</p>
|
10 | 25 | <p class="lead">All processing is done locally in your browser.</p>
|
11 | 26 | </div>
|
12 | 27 | </section>
|
13 | 28 |
|
14 |
| -<!-- About Section --> |
15 |
| -<section class="about-section bg-light text-center"> |
16 |
| - <div class="container"> |
17 |
| - <h5>Is this site missing a useful feature?</h5> |
18 |
| - <h6>Log an Issue or submit a PR at: </h6><a href="https://github.com/MrCull/MyDevTools">github.com/MrCull/MyDevTools</a> |
19 |
| - </div> |
20 |
| -</section> |
21 |
| - |
22 |
| -@* <!-- Features Section --> |
23 |
| -<section class="features-section text-center"> |
| 29 | +<!-- Features Section --> |
| 30 | +<section class="features-section text-center" aria-label="Available Tools"> |
24 | 31 | <div class="container">
|
25 |
| - <h2>Key Features</h2> |
| 32 | + <h2>Developer Tools</h2> |
26 | 33 | <div class="row">
|
27 | 34 | <div class="col-md-4">
|
28 | 35 | <h3>JSON Formatter</h3>
|
29 |
| - <p>Clean and format your JSON.</p> |
| 36 | + <p>Clean and format your JSON with syntax highlighting and validation.</p> |
30 | 37 | </div>
|
31 | 38 | <div class="col-md-4">
|
32 |
| - <h3>Branch Names</h3> |
33 |
| - <p>Auto-format your Git branch names.</p> |
| 39 | + <h3>SQL Formatter</h3> |
| 40 | + <p>Format and beautify your SQL queries for better readability.</p> |
| 41 | + </div> |
| 42 | + <div class="col-md-4"> |
| 43 | + <h3>GUID Generator</h3> |
| 44 | + <p>Generate unique GUIDs/UUIDs for your applications.</p> |
34 | 45 | </div>
|
35 | 46 | <div class="col-md-4">
|
36 | 47 | <h3>Hash Generator</h3>
|
37 |
| - <p>Generate secure hashes with ease.</p> |
| 48 | + <p>Generate secure hashes using various algorithms.</p> |
| 49 | + </div> |
| 50 | + <div class="col-md-4"> |
| 51 | + <h3>URL Encoder/Decoder</h3> |
| 52 | + <p>Encode and decode URLs with proper character escaping.</p> |
| 53 | + </div> |
| 54 | + <div class="col-md-4"> |
| 55 | + <h3>QR Code Generator</h3> |
| 56 | + <p>Create QR codes for URLs, text, or contact information.</p> |
38 | 57 | </div>
|
39 | 58 | </div>
|
40 | 59 | </div>
|
41 |
| -</section> *@ |
| 60 | +</section> |
| 61 | + |
| 62 | +<!-- About Section --> |
| 63 | +<section class="about-section bg-light text-center" aria-label="Contribution"> |
| 64 | + <div class="container"> |
| 65 | + <h2>Contribute to My Dev Tools</h2> |
| 66 | + <p>Is this site missing a useful feature? Help us improve!</p> |
| 67 | + <p>Log an Issue or submit a PR at: <a href="https://github.com/MrCull/MyDevTools" rel="noopener noreferrer">github.com/MrCull/MyDevTools</a></p> |
| 68 | + </div> |
| 69 | +</section> |
| 70 | + |
| 71 | +@code { |
| 72 | + protected override void OnInitialized() |
| 73 | + { |
| 74 | + // Add structured data for better SEO |
| 75 | + var structuredData = new |
| 76 | + { |
| 77 | + context = "https://schema.org", |
| 78 | + type = "WebApplication", |
| 79 | + name = "My Dev Tools", |
| 80 | + description = "Free online developer tools including JSON formatter, SQL formatter, GUID generator, hash generator, and more.", |
| 81 | + url = "https://mydevtools.org", |
| 82 | + applicationCategory = "DeveloperApplication", |
| 83 | + operatingSystem = "Any", |
| 84 | + offers = new |
| 85 | + { |
| 86 | + type = "Offer", |
| 87 | + price = "0", |
| 88 | + priceCurrency = "USD" |
| 89 | + } |
| 90 | + }; |
| 91 | + |
| 92 | + // You would need to implement a way to inject this into the page |
| 93 | + // This could be done through a service or by adding it to the page's script section |
| 94 | + } |
| 95 | +} |
0 commit comments