feat: base pages and news fetching with cron job
This commit is contained in:
14
components/VerticalLayout.tsx
Normal file
14
components/VerticalLayout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
export const VerticalLayout = ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
gap: '16px',
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user