mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-11 16:06:50 +02:00
30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
import Link from "next/link";
|
|
import { useTranslation } from "next-i18next";
|
|
import * as React from "react";
|
|
|
|
const Stats: React.VoidFunctionComponent = () => {
|
|
const { t } = useTranslation("homepage");
|
|
return (
|
|
<div className="py-16">
|
|
<h2 className="heading text-center">Stats</h2>
|
|
<p className="subheading text-center">100,000+ polls created</p>
|
|
<div className="flex justify-center space-x-3">
|
|
<Link href="/new">
|
|
<a className="rounded-lg bg-indigo-500 px-5 py-3 font-semibold text-white shadow-sm transition-all hover:bg-indigo-500/90 hover:text-white hover:no-underline hover:shadow-md focus:ring-2 focus:ring-indigo-200 active:bg-indigo-600/90">
|
|
{t("getStarted")}
|
|
</a>
|
|
</Link>
|
|
<Link href="/demo">
|
|
<a
|
|
className="rounded-lg bg-slate-500 px-5 py-3 font-semibold text-white shadow-sm transition-all hover:bg-slate-500/90 hover:text-white hover:no-underline hover:shadow-md focus:ring-2 focus:ring-indigo-200 active:bg-slate-600/90"
|
|
rel="nofollow"
|
|
>
|
|
{t("viewDemo")}
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Stats;
|