Update README.md
Browse files
README.md
CHANGED
@@ -6,76 +6,3 @@ emoji: 🔥
|
|
6 |
colorFrom: yellow
|
7 |
colorTo: red
|
8 |
---
|
9 |
-
import React from 'react';
|
10 |
-
|
11 |
-
const QoQnoosWebsite = () => {
|
12 |
-
return (
|
13 |
-
<div className="min-h-screen bg-gray-100">
|
14 |
-
{/* Header */}
|
15 |
-
<header className="bg-gray-800 text-white py-8 text-center">
|
16 |
-
<h1 className="text-4xl md:text-5xl font-bold">QoQnoos</h1>
|
17 |
-
<p className="text-lg md:text-xl mt-2">A New Horizon for Conversational AI</p>
|
18 |
-
</header>
|
19 |
-
|
20 |
-
{/* Main Content */}
|
21 |
-
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
22 |
-
{/* About Section */}
|
23 |
-
<section className="bg-white rounded-lg shadow-md mb-8 overflow-hidden">
|
24 |
-
<h2 className="bg-blue-600 text-white text-2xl font-bold p-4">About Us</h2>
|
25 |
-
<p className="p-6">
|
26 |
-
QoQnoos is an innovative AI project focused on building advanced conversational intelligence models. Created by a passionate team of Iranian teenagers, we aim to develop state-of-the-art AI solutions and bring them to the global stage. Our mission is to empower developers and researchers worldwide with accessible and high-quality AI models optimized for various use cases.
|
27 |
-
</p>
|
28 |
-
</section>
|
29 |
-
|
30 |
-
{/* Models Section */}
|
31 |
-
<section className="bg-white rounded-lg shadow-md mb-8 overflow-hidden">
|
32 |
-
<h2 className="bg-blue-600 text-white text-2xl font-bold p-4">Available Models</h2>
|
33 |
-
<ul className="p-6 space-y-4">
|
34 |
-
{[
|
35 |
-
{title: 'QoQnoos Lite (1B & 3B)', desc: 'Compact and efficient models designed for testing and small-scale applications.'},
|
36 |
-
{title: 'Persian QoQnoos (1B)', desc: 'Tailored specifically for Persian language and optimized for Iranian developers.'},
|
37 |
-
{title: 'QoQnoos Go (100M)', desc: 'Lightweight model with special features, ideal for younger audiences and smaller devices.'},
|
38 |
-
{title: 'QoQnoos Pro (Coming Soon)', desc: 'Our flagship model with 50B parameters, designed to compete with leading AI models like Llama.'}
|
39 |
-
].map((model, idx) => (
|
40 |
-
<li key={idx} className="bg-gray-50 p-4 rounded-md border-l-4 border-blue-600">
|
41 |
-
<strong>{model.title}:</strong> {model.desc}
|
42 |
-
</li>
|
43 |
-
))}
|
44 |
-
</ul>
|
45 |
-
</section>
|
46 |
-
|
47 |
-
{/* Team Section */}
|
48 |
-
<section className="bg-white rounded-lg shadow-md mb-8 overflow-hidden">
|
49 |
-
<h2 className="bg-blue-600 text-white text-2xl font-bold p-4">Our Team</h2>
|
50 |
-
<ul className="p-6 space-y-4">
|
51 |
-
{[
|
52 |
-
{name: 'Ali Mohammadi', role: 'Project Manager | AI & PyTorch Specialist'},
|
53 |
-
{name: 'MohammadSam Homayouni', role: 'Lead Developer | 12-year-old prodigy with expertise in web design and AI.'},
|
54 |
-
{name: 'Amir Mohammad Azadi', role: 'Dataset Manager | Leading dataset curation and optimization.'}
|
55 |
-
].map((member, idx) => (
|
56 |
-
<li key={idx} className="bg-gray-50 p-4 rounded-md border-l-4 border-blue-600">
|
57 |
-
<strong>{member.name}:</strong> {member.role}
|
58 |
-
</li>
|
59 |
-
))}
|
60 |
-
</ul>
|
61 |
-
</section>
|
62 |
-
|
63 |
-
{/* Get Involved Section */}
|
64 |
-
<section className="bg-white rounded-lg shadow-md mb-8 overflow-hidden">
|
65 |
-
<h2 className="bg-blue-600 text-white text-2xl font-bold p-4">Get Involved</h2>
|
66 |
-
<div className="p-6 space-y-4">
|
67 |
-
<p>We're always looking for collaborators, contributors, and supporters who share our vision. If you'd like to join our team or contribute to our models, feel free to email us!</p>
|
68 |
-
<p className="font-bold">Alert: To download our models, please contact us via email.</p>
|
69 |
-
</div>
|
70 |
-
</section>
|
71 |
-
</div>
|
72 |
-
|
73 |
-
{/* Footer */}
|
74 |
-
<footer className="bg-gray-800 text-white py-6 text-center">
|
75 |
-
<p>© 2025 QoQnoos. All rights reserved. | <a href="mailto:[email protected]" className="text-white hover:underline">Contact Us</a></p>
|
76 |
-
</footer>
|
77 |
-
</div>
|
78 |
-
);
|
79 |
-
};
|
80 |
-
|
81 |
-
export default QoQnoosWebsite;
|
|
|
6 |
colorFrom: yellow
|
7 |
colorTo: red
|
8 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|