c330647453
- 시스템 이름: JUNGGOMOA → GOLDMINT (돈복사 시스템) - 새 SVG 로고: 골드 코인 3장 stack (복사 효과) + $ + 상승 화살표 + sparkle - 파비콘: assets + frontend/app/icon.svg (GOLDMINT 코인) - 사이드바 / 로그인 / 대시보드 헤더 / metadata 모두 GOLDMINT 로 - 로그인 페이지 다크 + 골드 glow + 골드 그라디언트 버튼 - 사이드바 폭 260 → 280 (mini 72px), 푸터 아바타 골드 그라디언트 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
484 B
TypeScript
19 lines
484 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
import AuthGate from '@/components/AuthGate';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'GOLDMINT — 돈복사 시스템',
|
|
description: 'BTC/ETH Futures 자동매매 시스템 · 돈이 복사되는 시스템',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="ko">
|
|
<body>
|
|
<AuthGate>{children}</AuthGate>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|