/**
 * Root Layout (Non-Locale)
 * 
 * Minimal root layout with metadataBase, Apple iTunes App linking, and Apple icons
 */

import { type ReactNode } from 'react';
import { type Metadata } from 'next';

export const metadata: Metadata = {
  metadataBase: new URL('https://shinecode.ae'),
  title: {
    template: '%s | ShineCode',
    default: 'ShineCode — Premium At-Home Beauty & Wellness Services',
  },
  description:
    'Book professional beauty and wellness services at home. Expert certified professionals, hospital-grade sterilization, transparent pricing across Dubai, Sharjah & Ajman.',
  itunes: {
    appId: '1661355199',
  },
  icons: {
    icon: '/favicon.ico',
    apple: '/apple-touch-icon.png',
  },
};

export default function RootLayout({
  children,
}: Readonly<{
  children: ReactNode;
}>) {
  return children;
}
