website refactor
This commit is contained in:
20
apps/website/app/media/teams/page.tsx
Normal file
20
apps/website/app/media/teams/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import { MediaPageClient } from '../MediaPageClient';
|
||||
|
||||
export default async function TeamsMediaPage() {
|
||||
const assets = [
|
||||
{ id: 't1', src: '/media/teams/team-1/logo', title: 'Team Logo 1', category: 'teams', dimensions: '1024x1024' },
|
||||
{ id: 't2', src: '/media/teams/team-2/logo', title: 'Team Logo 2', category: 'teams', dimensions: '1024x1024' },
|
||||
];
|
||||
|
||||
const categories = [
|
||||
{ label: 'Teams', value: 'teams' },
|
||||
];
|
||||
|
||||
return (
|
||||
<MediaPageClient
|
||||
initialAssets={assets}
|
||||
categories={categories}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user