import React from 'react'; import { Link } from 'react-router-dom'; import VirtualIdCard from './components/VirtualIdCard'; import AuthenticityScore from './components/AuthenticityScore'; import Bio from './components/Bio'; import SocialLinks from './components/SocialLinks'; import VideoIntroduction from './components/VideoIntroduction'; import type { ContactData } from './types'; interface ContactPageProps { data: ContactData; } const ContactPage: React.FC = ({ data }) => { const totalScore = data.authenticityScore.videoVerification + data.authenticityScore.socialBinding + data.authenticityScore.cloneMaturity; return (

Contact Profile

Home Edit Page
); }; export default ContactPage;