File size: 1,396 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import { t } from "@lingui/macro";
import { useLingui } from "@lingui/react";
import { Helmet } from "react-helmet-async";
import { ContributorsSection } from "./sections/contributors";
import { FAQSection } from "./sections/faq";
import { FeaturesSection } from "./sections/features";
import { HeroSection } from "./sections/hero";
import { LogoCloudSection } from "./sections/logo-cloud";
import { StatisticsSection } from "./sections/statistics";
import { SupportSection } from "./sections/support";
import { TemplatesSection } from "./sections/templates";
import { TestimonialsSection } from "./sections/testimonials";
export const HomePage = () => {
const { i18n } = useLingui();
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>
);
};
|