| 12345678910111213141516 |
- import type { Metadata } from 'next';
- import type { ReactNode } from 'react';
- import './style.scss';
- export const metadata: Metadata = {
- title: 'DPOT 순위',
- description: '크리에이터·후원자 순위'
- };
- export default function RankingLayout({ children }: { children: ReactNode }) {
- return (
- <div id="rankingPage">
- {children}
- </div>
- );
- }
|