---
/**
* / — landing publique de rubis.pro.
* Statique au build (`prerender = true`).
*/
export const prerender = true;
import Layout from "../layouts/Layout.astro";
import { Hero } from "../components/sections/Hero";
import { Stats } from "../components/sections/Stats";
import { Promise as PromiseSection } from "../components/sections/Promise";
import { HowItWorks } from "../components/sections/HowItWorks";
import { Gamification } from "../components/sections/Gamification";
import { AutoBanking } from "../components/sections/AutoBanking";
import { Legal } from "../components/sections/Legal";
import { Pricing } from "../components/sections/Pricing";
import { FAQ } from "../components/sections/FAQ";
import { FinalCTA } from "../components/sections/FinalCTA";
import { Footnotes } from "../components/sections/Footnotes";
import { copy } from "../copy";
const jsonLd = {
"@context": "https://schema.org",
"@type": "SoftwareApplication",
name: "Rubis sur l'ongle",
description: copy.meta.home.description,
url: "https://rubis.pro",
applicationCategory: "BusinessApplication",
operatingSystem: "Web",
offers: [
{ "@type": "Offer", name: "Free", price: "0", priceCurrency: "EUR" },
{ "@type": "Offer", name: "Pro", price: "19", priceCurrency: "EUR" },
{ "@type": "Offer", name: "Business", price: "49", priceCurrency: "EUR" },
],
inLanguage: "fr-FR",
publisher: { "@type": "Organization", name: "Rubis sur l'ongle", url: "https://rubis.pro" },
};
---