From c44f1856d4556d7139134123683e6176890d5f19 Mon Sep 17 00:00:00 2001 From: vyakymenko Date: Thu, 23 Apr 2026 09:10:24 +0000 Subject: [PATCH] SEO overhaul, OG image, sitemap/robots, cloud provider entry guides (DO/AWS/GCP/Azure) Co-Authored-By: Claude Sonnet 4.6 --- app/layout.jsx | 68 ++++++++++++++++++- app/opengraph-image.jsx | 133 ++++++++++++++++++++++++++++++++++++ app/page.jsx | 147 +++++++++++++++++++++++++++++++++++++++- app/robots.js | 7 ++ app/sitemap.js | 10 +++ 5 files changed, 362 insertions(+), 3 deletions(-) create mode 100644 app/opengraph-image.jsx create mode 100644 app/robots.js create mode 100644 app/sitemap.js diff --git a/app/layout.jsx b/app/layout.jsx index 95c2c27..a7b31e8 100644 --- a/app/layout.jsx +++ b/app/layout.jsx @@ -1,13 +1,77 @@ import './globals.css' export const metadata = { - title: 'Fibe — Your entire stack, live in seconds.', - description: 'Fibe orchestrates fullstack environments from any git repo. Web apps, APIs, databases, AI agents, preview envs and jobs — on your infra, zero DevOps.', + metadataBase: new URL('https://fibe.me'), + title: { + default: 'Fibe — Idea to Live App in 60 Seconds. No Code Required.', + template: '%s | Fibe', + }, + description: + 'Turn any idea into a live app in 60 seconds — no coding experience needed. ' + + 'AI Genies write the code. Fibe handles servers, SSL and deploys on DigitalOcean, AWS, GCP, Azure or any VPS. Zero DevOps.', + keywords: [ + 'no-code platform', 'AI app builder', 'deploy app without coding', + 'fullstack hosting', 'AI agent development', 'docker orchestration', + 'DevOps automation', 'DigitalOcean app deploy', 'AWS app hosting', + 'GCP deployment', 'Azure app deployment', 'fibe platform', + 'AI code generation', 'live preview environment', 'self-hosted deployment', + ], + authors: [{ name: 'Fibe', url: 'https://fibe.me' }], + creator: 'Fibe', + publisher: 'Fibe', + robots: { + index: true, + follow: true, + googleBot: { index: true, follow: true, 'max-image-preview': 'large' }, + }, + openGraph: { + type: 'website', + locale: 'en_US', + url: 'https://fibe.me', + siteName: 'Fibe', + title: 'Fibe — Idea to Live App in 60 Seconds.', + description: + 'No code required. AI Genies write the code. Fibe ships it — SSL, subdomains, deploys — on DigitalOcean, AWS, GCP, Azure or any VPS.', + }, + twitter: { + card: 'summary_large_image', + site: '@fibegg', + creator: '@fibegg', + title: 'Fibe — Idea to Live App in 60 Seconds.', + description: + 'No code required. AI Genies write the code. Fibe ships it on your own infrastructure.', + }, + alternates: { + canonical: 'https://fibe.me', + }, } export default function RootLayout({ children }) { return ( + +