website refactor
This commit is contained in:
9
apps/website/ui/MainContent.tsx
Normal file
9
apps/website/ui/MainContent.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
interface MainContentProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export function MainContent({ children }: MainContentProps) {
|
||||
return <div className="pt-16">{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user