import type { Metadata } from "next";
export const metadata: Metadata = { title: "Collaborations — Ravneet Brar" };
export default function CollaborationsPage() {
  return (
    <div className="bg-[#07080c] pt-24">
      <section className="max-w-[900px] mx-auto px-6 sm:px-8 py-12 text-center">
        <h1 className="text-3xl font-bold text-white">COLLABORATIONS</h1>
        <p className="text-white/50">Genuine collaborations — partner, project, role, date, link. Visual lines between Ravneet and collaborators.</p>
      </section>
      <section className="max-w-[900px] mx-auto px-6 sm:px-8 pb-12">
        <div className="rounded-2xl border border-white/10 bg-white/[0.04] p-12 text-center text-white/40">No collaborations yet — add via Admin → Collaborations</div>
      </section>
    </div>
  );
}
