fix(public): fix problems with building #2
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user