interplanetary impact index
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 286 B view raw
1'use client' 2 3import { ReactNode } from 'react' 4 5interface MainContentProps { 6 children: ReactNode 7} 8 9export default function MainContent({ children }: MainContentProps) { 10 return ( 11 <main className="pt-20 px-4 sm:px-6 max-w-7xl mx-auto w-full"> 12 {children} 13 </main> 14 ) 15}