|
1 | 1 | import type { Metadata } from "next"; |
2 | 2 | import { Geist, Geist_Mono } from "next/font/google"; |
3 | 3 | import { Analytics } from "@vercel/analytics/next"; |
| 4 | +import pkg from "../../package.json"; |
4 | 5 | import "./globals.css"; |
5 | 6 |
|
6 | 7 | const geistSans = Geist({ |
@@ -71,22 +72,39 @@ export default function RootLayout({ |
71 | 72 | "@type": "SoftwareApplication", |
72 | 73 | name: "ReadmeGenAI", |
73 | 74 | applicationCategory: "DeveloperTool", |
| 75 | + applicationSubCategory: "Documentation Generator", |
74 | 76 | operatingSystem: "Web", |
75 | 77 | description: |
76 | 78 | "AI-powered GitHub README generator that creates professional markdown documentation automatically from any public GitHub repository.", |
77 | 79 | url: siteUrl, |
78 | 80 | image: `${siteUrl}/ReadmeGenAI.png`, |
| 81 | + screenshot: `${siteUrl}/ReadmeGenAI.png`, |
| 82 | + softwareVersion: pkg.version, |
| 83 | + datePublished: "2024-01-01", |
| 84 | + inLanguage: "en", |
| 85 | + keywords: |
| 86 | + "AI README generator, GitHub documentation, markdown generator, README automation, developer tool", |
| 87 | + author: { |
| 88 | + "@type": "Organization", |
| 89 | + name: "BeyteFlow", |
| 90 | + url: "https://github.com/BeyteFlow", |
| 91 | + }, |
79 | 92 | offers: { |
80 | 93 | "@type": "Offer", |
81 | 94 | price: "0", |
82 | 95 | priceCurrency: "USD", |
| 96 | + availability: "https://schema.org/OnlineOnly", |
| 97 | + url: siteUrl, |
83 | 98 | }, |
84 | 99 | featureList: [ |
85 | 100 | "AI-generated GitHub README files", |
86 | 101 | "Framework and dependency detection", |
87 | 102 | "Instant markdown output", |
88 | 103 | "GitHub Octokit integration", |
| 104 | + "Automated tech stack analysis", |
| 105 | + "Professional markdown formatting", |
89 | 106 | ], |
| 107 | + sameAs: ["https://github.com/BeyteFlow/ReadmeGenAI"], |
90 | 108 | }; |
91 | 109 |
|
92 | 110 | return ( |
|
0 commit comments