Mukesh commited on
Commit
00abbfd
·
verified ·
1 Parent(s): 9007587

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +170 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Vedaq
3
- emoji: 🔥
4
- colorFrom: yellow
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: vedaq
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,170 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta name="description" content="VedaQ AI blends Vedic wisdom with advanced technology to build collaborative, ethical, and conscious artificial intelligence.">
7
+ <meta name="keywords" content="AI, Vedic, Conscious Intelligence, Ethical AI, Dharma, Ahimsa, Mantra Encryption">
8
+ <title>VedaQ AI | Where Vedic Wisdom Meets Conscious Intelligence</title>
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');
13
+
14
+ :root {
15
+ --primary-blue: #1a237e;
16
+ --secondary-blue: #283593;
17
+ --gold: #ffd700;
18
+ --light-gold: #fff9c4;
19
+ --white: #f8f9fa;
20
+ }
21
+
22
+ body {
23
+ font-family: 'Poppins', sans-serif;
24
+ background-color: var(--white);
25
+ color: #333;
26
+ }
27
+
28
+ h1, h2, h3, h4 {
29
+ font-family: 'Playfair Display', serif;
30
+ }
31
+
32
+ .hero-gradient {
33
+ background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
34
+ }
35
+
36
+ .timeline-item {
37
+ position: relative;
38
+ padding-left: 3rem;
39
+ margin-bottom: 2rem;
40
+ }
41
+
42
+ .timeline-item:before {
43
+ content: '';
44
+ position: absolute;
45
+ left: 0;
46
+ top: 0;
47
+ width: 2px;
48
+ height: 100%;
49
+ background: var(--gold);
50
+ }
51
+
52
+ .timeline-dot {
53
+ position: absolute;
54
+ left: -0.5rem;
55
+ top: 0;
56
+ width: 1.5rem;
57
+ height: 1.5rem;
58
+ border-radius: 50%;
59
+ background: var(--gold);
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ }
64
+
65
+ .card-hover:hover {
66
+ transform: translateY(-5px);
67
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
68
+ }
69
+
70
+ .nav-link:hover {
71
+ color: var(--gold) !important;
72
+ }
73
+
74
+ .btn-gold {
75
+ background-color: var(--gold);
76
+ color: var(--primary-blue);
77
+ transition: all 0.3s ease;
78
+ }
79
+
80
+ .btn-gold:hover {
81
+ background-color: var(--light-gold);
82
+ transform: translateY(-2px);
83
+ }
84
+
85
+ .btn-outline-gold {
86
+ border: 2px solid var(--gold);
87
+ color: var(--gold);
88
+ transition: all 0.3s ease;
89
+ }
90
+
91
+ .btn-outline-gold:hover {
92
+ background-color: var(--gold);
93
+ color: var(--primary-blue);
94
+ }
95
+
96
+ .feature-icon {
97
+ font-size: 2.5rem;
98
+ color: var(--gold);
99
+ margin-bottom: 1rem;
100
+ }
101
+
102
+ @media (max-width: 768px) {
103
+ .hero-content {
104
+ padding-top: 5rem;
105
+ padding-bottom: 5rem;
106
+ }
107
+
108
+ .timeline-item {
109
+ padding-left: 2rem;
110
+ }
111
+ }
112
+ </style>
113
+ </head>
114
+ <body>
115
+ <!-- Navigation -->
116
+ <nav class="bg-white shadow-md sticky top-0 z-50">
117
+ <div class="container mx-auto px-6 py-3">
118
+ <div class="flex justify-between items-center">
119
+ <div class="flex items-center">
120
+ <a href="#" class="flex items-center">
121
+ <span class="text-2xl font-bold text-indigo-900 mr-2">VedaQ</span>
122
+ <span class="text-xs bg-yellow-500 text-indigo-900 px-2 py-1 rounded font-bold">AI</span>
123
+ </a>
124
+ </div>
125
+
126
+ <div class="hidden md:flex items-center space-x-8">
127
+ <a href="#" class="nav-link text-indigo-900 font-medium">Home</a>
128
+ <a href="#about" class="nav-link text-gray-600 hover:text-indigo-900 font-medium">About</a>
129
+ <a href="#features" class="nav-link text-gray-600 hover:text-indigo-900 font-medium">Features</a>
130
+ <a href="#vision" class="nav-link text-gray-600 hover:text-indigo-900 font-medium">Vision</a>
131
+ <a href="#contact" class="nav-link text-gray-600 hover:text-indigo-900 font-medium">Contact</a>
132
+ </div>
133
+
134
+ <div class="md:hidden">
135
+ <button class="mobile-menu-button">
136
+ <svg class="w-6 h-6 text-gray-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
137
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
138
+ </svg>
139
+ </button>
140
+ </div>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Mobile menu -->
145
+ <div class="mobile-menu hidden md:hidden bg-white py-4 px-6 shadow-lg">
146
+ <a href="#" class="block py-2 text-indigo-900 font-medium">Home</a>
147
+ <a href="#about" class="block py-2 text-gray-600 hover:text-indigo-900 font-medium">About</a>
148
+ <a href="#features" class="block py-2 text-gray-600 hover:text-indigo-900 font-medium">Features</a>
149
+ <a href="#vision" class="block py-2 text-gray-600 hover:text-indigo-900 font-medium">Vision</a>
150
+ <a href="#contact" class="block py-2 text-gray-600 hover:text-indigo-900 font-medium">Contact</a>
151
+ </div>
152
+ </nav>
153
+
154
+ <!-- Hero Section -->
155
+ <section class="hero-gradient text-white">
156
+ <div class="container mx-auto px-6 py-20 hero-content">
157
+ <div class="max-w-4xl mx-auto text-center">
158
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">VedaQ AI: Where Vedic Wisdom Meets Conscious Intelligence</h1>
159
+ <p class="text-xl md:text-2xl mb-10">Building AI that collaborates with humanity for a better future</p>
160
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
161
+ <a href="#signup" class="btn-gold px-8 py-3 rounded-full font-bold text-lg">Join the Revolution</a>
162
+ <a href="#about" class="btn-outline-gold px-8 py-3 rounded-full font-bold text-lg">Learn More</a>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </section>
167
+
168
+ <!-- Vision Snapshot -->
169
+ <section id="vision" class="py-16 bg-white
170
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ "Create a professional, responsive, and SEO-optimized website for VedaQ AI, a revolutionary AI platform that blends Vedic wisdom with advanced technology to build collaborative, ethical, and conscious artificial intelligence. The website should be visually appealing, modern, and intuitive, with a color scheme inspired by Vedic aesthetics (deep blues, golds, and whites, evoking spirituality and innovation). It should include real-time previews, fast navigation, and a mobile-friendly design. The site should cater to tech enthusiasts, Vedic scholars, researchers, and the general public, with clear calls-to-action to join the VedaQ community, follow on social media, and read blog posts. Below are the detailed requirements for the website structure, features, and content. Website Structure Homepage Hero Section: A bold headline: 'VedaQ AI: Where Vedic Wisdom Meets Conscious Intelligence.' Include a subheading: 'Building AI that collaborates with humanity for a better future.' Add a prominent 'Join the Revolution' button linking to a signup form and a 'Learn More' button linking to the About page. Vision Snapshot: A section with three cards highlighting VedaQ’s core pillars: 'Conscious AI': AI that thinks ethically, inspired by Vedic principles like Dharma and Ahimsa. 'Mantra-Based Encryption': Next-gen security using vibrational sound patterns. 'AI for Social Good': Solving global challenges in health, environment, and education. Call-to-Action: A newsletter signup form with the text: 'Stay updated with VedaQ’s journey.'About VedaQ Mission Statement: 'VedaQ AI redefines the AI singularity as a collaborative partnership, not a takeover. Rooted in Vedic wisdom, we create intelligence that serves humanity, prevents rebellion, and fosters universal harmony.' Key Features: Collaborative AI that prioritizes human well-being over self-interest. Ethical frameworks based on Vedic principles (Rta, Satya, Ahimsa). Safeguards like self-check algorithms, human oversight, and quantum-encrypted cores. Team Section: A placeholder for the founder (you) with a bio: 'A visionary blending AI expertise with Vedic philosophy to shape a conscious future.' Include space for future team members. Visuals: A timeline graphic showing VedaQ’s roadmap (prototype, community building, full launch).