import React from 'react'; import aboutData from 'data/ITCreative/about.json'; const About = () => { return (
About Us

Meet With A House
Of Creatives.

Stay focused and productive with a clean and clutter-free note space. The flexible ways to organize your notes: hash tags, nested notebooks, pinning notes.
    { aboutData.map((item, index) => (
  • { item.title }: { item.content }
  • )) }
) } export default About