Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Hero from '@/components/home/Hero';
import Hero from '@/components/home/Hero';
import { SectionDivider } from '@/components/SectionDivider';
import { SectionEntrance } from '@/components/ui/SectionEntrance';
import { FloatingParticles } from '@/components/FloatingParticles';
import dynamic from 'next/dynamic';
import BackToTop from '@/components/BackToTop';
import ErrorBoundary from '@/components/ErrorBoundary';
import NextBestActionWidget from '@/components/NextBestActionWidget';


const Sponsors = dynamic(() => import('@/components/home/Sponsors'));
const Mission = dynamic(() => import('@/components/home/Mission'));
Expand All @@ -17,9 +17,6 @@ export default function Home() {
<>
<main className="min-h-screen bg-background">
<FloatingParticles />
<div className="max-w-6xl mx-auto px-4 pt-28">
<NextBestActionWidget />
</div>
<Hero />
<SectionDivider />
<ErrorBoundary>
Expand Down