import React from 'react';
import { ArrowBackIosNew, Security, Report, Lock, Psychology } from '@mui/icons-material';
import { useNavigate } from 'react-router-dom';
import { motion } from 'framer-motion';
import LazyImage from '../components/common/LazyImage';
import safegirl from "../assets/images/safegirl.jpg";
const dummyImage = "https://images.unsplash.com/photo-1594736797933-d0501ba2fe65?w=800&q=80&fit=crop";
export default function SafetyCentre() {
const navigate = useNavigate();
const safetyTips = [
{
icon: ,
title: "Safety Tips",
color: "red",
desc: "Follow these practical guidelines to protect yourself while connecting with potential Matches."
},
{
icon: ,
title: "Report a Profile",
color: "orange",
desc: "Report any suspicious or inappropriate behavior immediately—especially requests for money, unsolicited contact, or blackmail threats."
},
{
icon: ,
title: "Privacy Settings",
color: "pink",
desc: "Manage who sees your photos, contact info, & profile and always be in control."
},
{
icon: ,
title: "Mental Wellbeing",
color: "blue",
desc: "Here's how you can prioritize your mental well-being while making this life-changing decision."
}
];
return (
{/* Premium Header */}
{/* Hero Section */}
Safety Centre
Your safety matters deeply at Thirukalyanam.
Our team works with advanced tools to ensure your matchmaking journey remains secure and safe.
{/* Safety Tips Grid */}
{safetyTips.map((tip, index) => (
{tip.icon}
))}
{/* Final Trust Message */}
You're Never Alone
Our 24×7 Safety Team is always watching. One tap to report — and we take immediate action.
);
}