fix(public): fix problems with building #2

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-11-13 22:12:17 +01:00
parent 915e8f4dbf
commit eab92bb780
9 changed files with 97 additions and 96 deletions

View File

@@ -27,18 +27,7 @@ const getProjectsWithCount = cacheable(async function getProjectsWithCount() {
return { projects, last24hCount: last24h[0]?.count || 0 };
}, 60 * 60);
export default Stats;
export function Stats() {
return (
<Suspense
fallback={<StatsPure projectCount={0} eventCount={0} last24hCount={0} />}
>
<StatsServer />
</Suspense>
);
}
export async function StatsServer() {
export async function Stats() {
const { projects, last24hCount } = await getProjectsWithCount();
const projectCount = projects.length;
const eventCount = projects.reduce((acc, { count }) => acc + count, 0);

View File

@@ -1,7 +1,6 @@
import type { TableOfContents } from 'fumadocs-core/server';
import { ArrowRightIcon } from 'lucide-react';
import Link from 'next/link';
import type React from 'react';
interface Props {
toc: TableOfContents;