Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions prototypes/docusaurus/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ const config: Config = {
title: 'Docs',
items: [
{
label: 'Documentation Guide',
label: 'Documentation guide',
to: '/docs',
},
{label: 'Create a New App', to: '/docs/getting-started/create-react-on-rails-app'},
{label: 'Create a new app', to: '/docs/getting-started/create-react-on-rails-app'},
{
label: 'Install into Existing Rails App',
label: 'Install into existing Rails app',
to: '/docs/getting-started/existing-rails-app',
},
{label: 'Quick Start', to: '/docs/getting-started/quick-start'},
{label: 'Quick start', to: '/docs/getting-started/quick-start'},
{label: 'Compare OSS and Pro', to: '/docs/getting-started/oss-vs-pro'},
{label: 'Upgrade to Pro', to: '/docs/pro/upgrading-to-pro'},
{label: 'React on Rails Pro', to: '/docs/pro'},
Expand Down Expand Up @@ -204,7 +204,7 @@ const config: Config = {
to: '/pro',
},
{
label: 'Pro Pricing & Sign Up',
label: 'Pro pricing & sign up',
href: 'https://pro.reactonrails.com/',
},
{
Expand Down
10 changes: 5 additions & 5 deletions prototypes/docusaurus/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ import styles from './index.module.css';

const quickStartCards = [
{
title: 'Create App',
title: 'Create app',
command: 'npx create-react-on-rails-app@latest my-app',
description: 'Scaffold a working Rails + React app with TypeScript defaults.',
href: docsRoutes.createApp,
cta: 'Open guide',
},
{
title: 'Install Into Rails',
title: 'Install into Rails',
command: 'bundle exec rails generate react_on_rails:install --typescript',
description: 'Add React on Rails to an existing app while keeping Rails routes and conventions.',
href: docsRoutes.installExistingApp,
cta: 'Open guide',
},
{
title: 'Upgrade To Pro',
title: 'Upgrade to Pro',
command: 'bundle add react_on_rails_pro',
description: 'Evaluate Pro SSR, streaming, and RSC paths before buying a production license.',
href: docsRoutes.proUpgrade,
Expand All @@ -46,7 +46,7 @@ const valueCards = [
'Use server rendering, hydration, and streaming paths that fit mature Rails deployments.',
},
{
title: 'OSS And Pro',
title: 'OSS and Pro',
description:
'Start with open source docs, then add Pro when SSR throughput, RSC support, or guided support matters.',
},
Expand Down Expand Up @@ -164,7 +164,7 @@ function HeroSection() {
</p>
<div className={styles.buttons}>
<Link className="button button--primary button--lg" to={docsRoutes.docsGuide}>
Browse Docs
Browse docs
</Link>
<Link className="button button--secondary button--lg" to="/examples">
Examples
Expand Down
Loading