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

@@ -3,15 +3,16 @@ import { Faq } from '@/components/sections/faq';
import { Features } from '@/components/sections/features';
import { Pricing } from '@/components/sections/pricing';
import { Sdks } from '@/components/sections/sdks';
import { Stats } from '@/components/sections/stats';
import { Stats, StatsPure } from '@/components/sections/stats';
import { Testimonials } from '@/components/sections/testimonials';
import type { Metadata } from 'next';
import { Suspense } from 'react';
export const metadata: Metadata = {
title: 'An open-source alternative to Mixpanel',
};
export const revalidate = 3600;
export const experimental_ppr = true;
export default function HomePage() {
return (
@@ -19,7 +20,17 @@ export default function HomePage() {
<Hero />
<Features />
<Testimonials />
<Stats />
<Suspense
fallback={
<StatsPure
projectCount={882}
eventCount={634_000_000}
last24hCount={7_000_000}
/>
}
>
<Stats />
</Suspense>
<Faq />
<Pricing />
<Sdks />