import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'المتجر',
  description: 'تصفح منتجاتنا وتسوق بكل سهولة',
};

export default function StoreLayout({ children }: { children: React.ReactNode }) {
  return (
    <div className="min-h-screen bg-background" dir="rtl">
      {children}
    </div>
  );
}
