diff --git a/src/app/About/page.tsx b/src/app/About/page.tsx new file mode 100644 index 0000000..80d3a2c --- /dev/null +++ b/src/app/About/page.tsx @@ -0,0 +1,11 @@ +import About from "@/components/About"; + +const AboutPage = () => { + return ( +
+ +
+ ); +}; + +export default AboutPage; diff --git a/src/components/About.tsx b/src/components/About.tsx new file mode 100644 index 0000000..6ef43e0 --- /dev/null +++ b/src/components/About.tsx @@ -0,0 +1,43 @@ +import React from 'react'; +import Image from 'next/image'; + +const About = () => { + return ( +
+
+
+

Who's behind talkd?

+

+ Subheading for description or instructions +

+

+ Excepteur efficient emerging, minim veniam anim aute carefully curated Ginza conversation exquisite perfect nostrud nisi intricate Content. Qui international first-class nulla ut. Punctual adipisicing, essential lovely queen tempor eiusmod irure. +

+
+
    +
  • Exclusive izakaya charming Scandinavian
  • +
  • Impeccable aute quality of life soft power pariatur
  • +
  • Melbourne occaecat discerning
  • +
+
+

+ Qui wardrobe aliquip, et Porter destination Toto remarkable officia Helsinki excepteur Basset hound. Zürich sleepy perfect consectetur. +

+
+
+ Team +
+
+
+ ); +}; + +export default About; \ No newline at end of file