mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-23 13:11:27 +10:00
- implement disable_email_auth env var
- add sync crowdin translations github action
This commit is contained in:
@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
@ -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user