diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx index 5aa23bd..19e2faf 100644 --- a/frontend/src/pages/About.tsx +++ b/frontend/src/pages/About.tsx @@ -2,97 +2,188 @@ import React from 'react'; const About: React.FC = () => { return ( -
-
-
-

- About IdeaVault +
+
+ {/* Header Section */} +
+

+ About IdeaVault

- -
-

- IdeaVault is an open-source SaaS platform that empowers developers and founders - to license their original software project ideas under a unique 1% attribution model. -

+

+ An open-source SaaS platform that empowers developers and founders + to license their original software project ideas under a unique 1% attribution model. +

+
-

Our Mission

-

+ {/* Main Content */} +

+ {/* Mission Section */} +
+

+ + Our Mission +

+

We believe that great ideas deserve recognition and fair compensation. Our platform provides a digital timestamp and licensing model for your startup or project idea, ensuring you get credited and compensated when others build upon your innovations.

+
-

How It Works

-
-
- 1 -
-

Submit Your Idea

-

Register your software project idea with detailed description and implementation concepts.

-
+ {/* Stats Card */} +
+

Platform Stats

+
+
+
1%
+
Revenue Attribution
-
- 2 -
-

Get Timestamped Proof

-

Receive a timestamped certificate with hash verification for legal protection.

-
+
+
100%
+
Open Source
-
- 3 -
-

Earn Attribution

-

When someone builds your idea commercially, they must attribute you and share 1% of gross revenue.

-
+
+
+
Ideas Welcome
+
+
+ + {/* How It Works Section */} +
+

+ How It Works +

+ +
+ {[ + { + step: "1", + title: "Submit Your Idea", + description: "Register your software project idea with detailed description and implementation concepts.", + icon: "💡" + }, + { + step: "2", + title: "Get Timestamped Proof", + description: "Receive a timestamped certificate with hash verification for legal protection.", + icon: "🔒" + }, + { + step: "3", + title: "Earn Attribution", + description: "When someone builds your idea commercially, they must attribute you and share 1% of gross revenue.", + icon: "💰" + } + ].map((item, index) => ( +
+
+
+ {item.step} +
+
{item.icon}
+
+

{item.title}

+

{item.description}

+
+ ))} +
+
-

The 1% Model

-

+ {/* Features Grid */} +

+ {/* 1% Model */} +
+

+ + The 1% Model +

+

Under our modified MIT-style license, your idea is publicly registered and others must attribute you and share 1% of their revenue if they use it commercially. This creates a fair ecosystem where innovation is rewarded while still encouraging open collaboration.

+
-

Technology Stack

-
-
-

Backend

-
    -
  • • TypeScript & Node.js
  • -
  • • Express.js REST API
  • -
  • • MongoDB for data storage
  • -
  • • Redis for caching
  • -
-
-
-

Frontend

-
    -
  • • React.js with TypeScript
  • -
  • • Vite for fast development
  • -
  • • Tailwind CSS for styling
  • -
  • • React Router for navigation
  • -
-
-
- -

Open Source

-

+ {/* Open Source */} +

+

+ + Open Source +

+

IdeaVault is proudly open source under the MIT License. We believe in transparency and community-driven development. Contributions are welcome and encouraged!

+
+
+ {/* Technology Stack */} +
+

+ Technology Stack +

+ +
- +
+ BE +
+

Backend

+
+ {[ + "TypeScript & Node.js", + "Express.js REST API", + "MongoDB for data storage", + "Redis for caching" + ].map((tech, index) => ( +
+ + {tech} +
+ ))} +
+
+ +
+
+ FE +
+

Frontend

+
+ {[ + "React.js with TypeScript", + "Vite for fast development", + "Tailwind CSS for styling", + "React Router for navigation" + ].map((tech, index) => ( +
+ + {tech} +
+ ))} +
+ + {/* Call to Action */} +
+

+ Ready to License Your Ideas? +

+

+ Join the revolution of fair idea attribution and start protecting your innovations today. +

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