const FEATURES = [ "Access to world-renowned museums, archives, and libraries.", "A hub for international organizations and global policy.", "A vibrant cultural ecosystem that enriches the liberal arts experience.", ]; const IMAGES = [ { src: "https://storage.googleapis.com/uxpilot-auth.appspot.com/4df3620db3-dda28233c91d6369d039.png", alt: "Parisian cafe and street", tall: false }, { src: "https://storage.googleapis.com/uxpilot-auth.appspot.com/a45c3de13a-8173142c33595269388d.png", alt: "Students in Parisian library", tall: true }, { src: "https://storage.googleapis.com/uxpilot-auth.appspot.com/fe39e27ab6-40f9c9b4851f3b8176da.png", alt: "Seine river with historic bridges", tall: true }, { src: "https://storage.googleapis.com/uxpilot-auth.appspot.com/cb66207ea0-16795a67db08ef0e6f8c.png", alt: "Modern research facility", tall: false }, ]; const WhyParis = () => { return (
{/* Left: Image grid */}
{IMAGES[0].alt} {IMAGES[1].alt}
{IMAGES[2].alt} {IMAGES[3].alt}
{/* Right: Text */}
Our Location

Why Paris?

Paris is not just a backdrop; it is our extended campus. As a historic center of intellectual thought, art, and scientific discovery, the city offers unparalleled opportunities for our students and researchers.

    {FEATURES.map((item, i) => (
  • {item}
  • ))}
); }; export default WhyParis;