- implement disable_email_auth env var

- add sync crowdin translations github action
This commit is contained in:
Amruth Pillai
2023-11-21 09:44:37 +01:00
parent 635f743e56
commit 1825fc3283
84 changed files with 2693 additions and 2341 deletions

View File

@ -1,4 +1,5 @@
import { t } from "@lingui/macro";
import { useLingui } from "@lingui/react";
import { Helmet } from "react-helmet-async";
import { ContributorsSection } from "./sections/contributors";
@ -11,22 +12,33 @@ import { SupportSection } from "./sections/support";
import { TemplatesSection } from "./sections/templates";
import { TestimonialsSection } from "./sections/testimonials";
export const HomePage = () => (
<main className="relative isolate bg-background">
<Helmet>
<title>
{t`Reactive Resume`} - {t`A free and open-source resume builder`}
</title>
</Helmet>
export const HomePage = () => {
const { i18n } = useLingui();
<HeroSection />
<LogoCloudSection />
<StatisticsSection />
<FeaturesSection />
<TemplatesSection />
<TestimonialsSection />
<SupportSection />
<FAQSection />
<ContributorsSection />
</main>
);
return (
<main className="relative isolate bg-background">
<Helmet prioritizeSeoTags>
<html lang={i18n.locale} />
<title>
{t`Reactive Resume`} - {t`A free and open-source resume builder`}
</title>
<meta
name="description"
content="A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume."
/>
</Helmet>
<HeroSection />
<LogoCloudSection />
<StatisticsSection />
<FeaturesSection />
<TemplatesSection />
<TestimonialsSection />
<SupportSection />
<FAQSection />
<ContributorsSection />
</main>
);
};

View File

@ -57,7 +57,7 @@ export const HeroSection = () => (
<img
width={3600}
height={2078}
src="/screenshots/builder.png"
src="/screenshots/builder.jpg"
alt="Reactive Resume - Screenshot - Builder Screen"
className="w-[76rem] rounded-lg bg-background/5 shadow-2xl ring-1 ring-foreground/10"
/>