mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 08:42:08 +10:00
fix(client): 🐛 do not allow private resumes to be viewable or downloadable through the link
This commit is contained in:
17
client/components/home/Testimony.tsx
Normal file
17
client/components/home/Testimony.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { Testimony as TestimonyType } from '@/data/testimonials';
|
||||
|
||||
import styles from './Testimony.module.scss';
|
||||
|
||||
type Props = TestimonyType;
|
||||
|
||||
const Testimony: React.FC<Props> = ({ name, message }) => {
|
||||
return (
|
||||
<div className={styles.testimony}>
|
||||
<blockquote>{message}</blockquote>
|
||||
|
||||
<figcaption>— {name}</figcaption>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Testimony;
|
||||
Reference in New Issue
Block a user