import React from 'react'; import { Check, X } from 'lucide-react'; const PartnerPreferences = () => { const basicPreferences = [ { label: "Preferred Bride's Age", value: "22-29 yrs", match: true }, { label: "Preferred Height", value: "5'0\" - 5'5\"", match: false }, { label: "Preferred Marital Status", value: "Never Married", match: true }, { label: "Preferred Mother Tongue", value: "Tamil", match: true }, { label: "Preferred Physical Status", value: "Normal", match: true }, { label: "Preferred Eating Habits", value: "Vegetarian", match: false }, { label: "Preferred Smoking Habits", value: "Doesn't Matter", match: true }, { label: "Preferred Drinking Habits", value: "Doesn't Matter", match: true }, ]; const religiousPreferences = [ { label: "Preferred Religion", value: "Hindu", match: true }, { label: "Preferred Caste", value: "Brahmin - Iyer", match: false }, { label: "Preferred Subcaste", value: "Any", match: false }, { label: "Preferred Star", value: "Any", match: true }, { label: "Preferred Dosham", value: "No Dosham", match: true }, ]; const PreferenceItem = ({ label, value, match }) => (
{label} {value}
{match ? (
) : (
)}
); return (
{/* Header */}

His Partner Preferences

{/* Match Score Card */}
Profile

You match

14/20

of his preferences

Your Profile
{/* Basic Preferences Section */}

Basic Preferences

You match
{basicPreferences.map((pref, index) => ( ))}
{/* Religious Preferences Section */}

Religious Preferences

{religiousPreferences.map((pref, index) => ( ))}
{/* Footer Note */}

Preferences are used to find compatible matches

); }; export default PartnerPreferences;