interface AboutProps { width: number; height: number; } const About = ({ width, height }: AboutProps) => { return "About"; }; export default About;