import type React from "react"
import type { Metadata } from "next"

export const metadata: Metadata = {
  title: "Design System - World Mind",
  description: "Design system and components for World Mind",
}

export default function DesignLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return <div className="min-h-screen">{children}</div>
}
