add a basic landing page
All checks were successful
Deploy Backend / deploy (push) Successful in 3m4s
Deploy Website / deploy (push) Successful in 4m30s

This commit is contained in:
Lee
2024-10-12 04:12:35 +01:00
parent 0ac70f4781
commit 27c88cdb75
7 changed files with 75 additions and 2 deletions

View File

@ -0,0 +1,16 @@
"use client";
import CountUp from "react-countup";
type Statistic = {
title: string;
value: number;
};
export default function Statistic({ title, value }: Statistic) {
return (
<p className="text-center">
{title}: <CountUp end={value} duration={0.75} />
</p>
);
}