Your library, your data, your rules.
"use client"; import { motion } from "motion/react"; import Image from "next/image"; import Link from "next/link"; import { SofaLogo } from "@/components/sofa-logo"; // Poster positions arranged in angled columns behind the hero const posterLayout = [ // Left column { x: "8%", y: "5%", rotate: -8, delay: 0 }, { x: "5%", y: "38%", rotate: -12, delay: 0.1 }, { x: "10%", y: "68%", rotate: -6, delay: 0.2 }, // Left-center column { x: "24%", y: "12%", rotate: 4, delay: 0.05 }, { x: "22%", y: "50%", rotate: -3, delay: 0.15 }, { x: "26%", y: "78%", rotate: 6, delay: 0.25 }, // Right-center column { x: "62%", y: "8%", rotate: -5, delay: 0.08 }, { x: "64%", y: "42%", rotate: 7, delay: 0.18 }, { x: "60%", y: "72%", rotate: -4, delay: 0.28 }, // Right column { x: "80%", y: "3%", rotate: 10, delay: 0.03 }, { x: "82%", y: "36%", rotate: -8, delay: 0.13 }, { x: "78%", y: "66%", rotate: 5, delay: 0.23 }, ]; export function LandingPage({ posterUrls, freshInstall, registrationOpen, }: { posterUrls: string[]; freshInstall: boolean; registrationOpen: boolean; }) { return (