layout.tsx 358 B

12345678910111213141516
  1. import type { Metadata } from 'next';
  2. import type { ReactNode } from 'react';
  3. import './style.scss';
  4. export const metadata: Metadata = {
  5. title: 'DPOT 순위',
  6. description: '크리에이터·후원자 순위'
  7. };
  8. export default function RankingLayout({ children }: { children: ReactNode }) {
  9. return (
  10. <div id="rankingPage">
  11. {children}
  12. </div>
  13. );
  14. }