import { AboutData } from "@/app/about/types"; import { getCmsImageUrl } from "@/utils/image"; import Link from "next/link"; interface HeroSectionProps { data?: AboutData | null; } const HeroSection = ({ data }: HeroSectionProps) => { const title = data?.hero?.title || "A Legacy of Liberal Arts & Research"; const backgroundImage = data?.hero?.backgroundImage ? getCmsImageUrl(data.hero.backgroundImage) : null; return (
{/* Left: Text */}
Our Identity

Founded in the heart of Paris, Université Libérale is dedicated to fostering critical thinking, interdisciplinary innovation, and global understanding through a rigorous liberal arts curriculum and world-class research initiatives.

{/* Right: Image */}
University campus

Top 50

Global Research Ranking

); }; export default HeroSection;