mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-24 05:25:19 +00:00
- Updated index.tsx to use <Translate> and translate() for all main texts (title, subtitle, CTA, description) — now fully i18n-ready. - Added new translation files (code.json, navbar.json, footer.json, etc.) to support Russian language for homepage and UI. - Enables seamless language switching and correct translations of homepage elements.
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import type {ReactNode} from 'react';
|
|
import clsx from 'clsx';
|
|
import Link from '@docusaurus/Link';
|
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
import Layout from '@theme/Layout';
|
|
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
import Heading from '@theme/Heading';
|
|
import Translate, {translate} from '@docusaurus/Translate';
|
|
|
|
import styles from './index.module.css';
|
|
|
|
function HomepageHeader() {
|
|
const {siteConfig} = useDocusaurusContext();
|
|
return (
|
|
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
<div className="container">
|
|
<Heading as="h1" className="hero__title">
|
|
<Translate id="homepage.title">CherryPick</Translate>
|
|
</Heading>
|
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
<div className={styles.buttons}>
|
|
<Link
|
|
className="button button--secondary button--lg"
|
|
to="/docs/intro"
|
|
>
|
|
<Translate id="homepage.cta">Explore CherryPick Documentation 🍒</Translate>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
|
|
export default function Home(): ReactNode {
|
|
const {siteConfig} = useDocusaurusContext();
|
|
return (
|
|
<Layout
|
|
title={siteConfig.title}
|
|
description="CherryPick: Modular and lightweight dependency injection for Dart & Flutter. Fast, powerful, easy to integrate.">
|
|
<HomepageHeader />
|
|
<main>
|
|
<HomepageFeatures />
|
|
</main>
|
|
</Layout>
|
|
);
|
|
}
|