arshia-a1 commited on
Commit
fcd4f84
·
verified ·
1 Parent(s): 44f4bf1

محتوا و زیبایی سایت را به شکل خلاقانه و زیادی چند برابر کن تعداد صفحات نیز حداقل ۴ تا باشد

Browse files
Files changed (4) hide show
  1. about.html +20 -0
  2. blog.html +75 -0
  3. components/team-members.js +131 -0
  4. projects.html +89 -0
about.html ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```html
2
+ <!DOCTYPE html>
3
+ <html lang="en" class="dark">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>About SuperNova | Our Mission</title>
8
+ <meta name="description" content="Learn about SuperNova's mission, values, and the team behind our innovative solutions">
9
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
10
+ <script src="https://cdn.tailwindcss.com"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <link rel="stylesheet" href="style.css">
13
+ </head>
14
+ <body class="bg-dark-900 text-gray-200 min-h-screen">
15
+ <custom-navbar></custom-navbar>
16
+ <script src="components/navbar.js"></script>
17
+
18
+ <main>
19
+ <!-- Hero Section -->
20
+ <section class="relative py-32 px-4 bg-gradient-to-b from-dark-800 to-dark-900">
blog.html ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SuperNova Blog | Latest Tech Insights</title>
7
+ <meta name="description" content="Latest articles and insights from SuperNova's team of experts">
8
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <link rel="stylesheet" href="style.css">
12
+ </head>
13
+ <body class="bg-dark-900 text-gray-200 min-h-screen">
14
+ <custom-navbar></custom-navbar>
15
+ <script src="components/navbar.js"></script>
16
+
17
+ <main class="max-w-6xl mx-auto py-16 px-4">
18
+ <h1 class="text-5xl font-bold mb-12 text-center bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">SuperNova Blog</h1>
19
+
20
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
21
+ <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-primary-500 transition-all duration-300 hover:-translate-y-2">
22
+ <img src="http://static.photos/technology/640x360/1" alt="AI Article" class="w-full h-48 object-cover">
23
+ <div class="p-6">
24
+ <div class="flex items-center gap-2 mb-4">
25
+ <span class="text-xs px-3 py-1 bg-primary-500/20 text-primary-500 rounded-full">AI</span>
26
+ <span class="text-gray-400 text-sm">May 15, 2023</span>
27
+ </div>
28
+ <h2 class="text-2xl font-bold mb-3">The Future of AI in Web Development</h2>
29
+ <p class="text-gray-400 mb-4">Exploring how artificial intelligence is revolutionizing the way we build and interact with web applications.</p>
30
+ <a href="#" class="text-primary-500 font-medium inline-flex items-center gap-1 hover:text-primary-400 transition-colors">
31
+ Read More <i data-feather="arrow-right" class="w-4 h-4"></i>
32
+ </a>
33
+ </div>
34
+ </article>
35
+
36
+ <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-secondary-500 transition-all duration-300 hover:-translate-y-2">
37
+ <img src="http://static.photos/technology/640x360/2" alt="Blockchain Article" class="w-full h-48 object-cover">
38
+ <div class="p-6">
39
+ <div class="flex items-center gap-2 mb-4">
40
+ <span class="text-xs px-3 py-1 bg-secondary-500/20 text-secondary-500 rounded-full">Blockchain</span>
41
+ <span class="text-gray-400 text-sm">April 28, 2023</span>
42
+ </div>
43
+ <h2 class="text-2xl font-bold mb-3">Decentralized Applications: The Next Web Revolution</h2>
44
+ <p class="text-gray-400 mb-4">How dApps are changing the landscape of internet services and user data ownership.</p>
45
+ <a href="#" class="text-secondary-500 font-medium inline-flex items-center gap-1 hover:text-secondary-400 transition-colors">
46
+ Read More <i data-feather="arrow-right" class="w-4 h-4"></i>
47
+ </a>
48
+ </div>
49
+ </article>
50
+
51
+ <article class="bg-dark-800 rounded-xl overflow-hidden border border-dark-700 hover:border-purple-500 transition-all duration-300 hover:-translate-y-2">
52
+ <img src="http://static.photos/technology/640x360/3" alt="Web3 Article" class="w-full h-48 object-cover">
53
+ <div class="p-6">
54
+ <div class="flex items-center gap-2 mb-4">
55
+ <span class="text-xs px-3 py-1 bg-purple-500/20 text-purple-500 rounded-full">Web3</span>
56
+ <span class="text-gray-400 text-sm">March 10, 2023</span>
57
+ </div>
58
+ <h2 class="text-2xl font-bold mb-3">Building the Metaverse: Tools and Technologies</h2>
59
+ <p class="text-gray-400 mb-4">An in-depth look at the frameworks powering the next generation of immersive web experiences.</p>
60
+ <a href="#" class="text-purple-500 font-medium inline-flex items-center gap-1 hover:text-purple-400 transition-colors">
61
+ Read More <i data-feather="arrow-right" class="w-4 h-4"></i>
62
+ </a>
63
+ </div>
64
+ </article>
65
+ </div>
66
+ </main>
67
+
68
+ <custom-footer></custom-footer>
69
+ <script src="components/footer.js"></script>
70
+ <script src="script.js"></script>
71
+ <script>
72
+ feather.replace();
73
+ </script>
74
+ </body>
75
+ </html>
components/team-members.js ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class TeamMembers extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ padding: 2rem 0;
9
+ }
10
+
11
+ .team-grid {
12
+ display: grid;
13
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
14
+ gap: 2rem;
15
+ max-width: 1200px;
16
+ margin: 0 auto;
17
+ }
18
+
19
+ .member-card {
20
+ background: rgba(30, 41, 59, 0.7);
21
+ border-radius: 16px;
22
+ overflow: hidden;
23
+ border: 1px solid rgba(255, 255, 255, 0.1);
24
+ transition: all 0.3s ease;
25
+ position: relative;
26
+ }
27
+
28
+ .member-card:hover {
29
+ transform: translateY(-10px);
30
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
31
+ }
32
+
33
+ .member-image {
34
+ width: 100%;
35
+ height: 300px;
36
+ object-fit: cover;
37
+ }
38
+
39
+ .member-info {
40
+ padding: 1.5rem;
41
+ }
42
+
43
+ .member-name {
44
+ font-size: 1.25rem;
45
+ font-weight: 600;
46
+ margin-bottom: 0.5rem;
47
+ color: white;
48
+ }
49
+
50
+ .member-role {
51
+ color: #ec4899;
52
+ margin-bottom: 1rem;
53
+ font-weight: 500;
54
+ }
55
+
56
+ .member-bio {
57
+ color: rgba(255, 255, 255, 0.8);
58
+ margin-bottom: 1.5rem;
59
+ line-height: 1.6;
60
+ }
61
+
62
+ .social-links {
63
+ display: flex;
64
+ gap: 1rem;
65
+ }
66
+
67
+ .social-link {
68
+ color: white;
69
+ background: rgba(79, 70, 229, 0.2);
70
+ width: 36px;
71
+ height: 36px;
72
+ border-radius: 50%;
73
+ display: flex;
74
+ align-items: center;
75
+ justify-content: center;
76
+ transition: all 0.3s ease;
77
+ }
78
+
79
+ .social-link:hover {
80
+ background: #4f46e5;
81
+ transform: translateY(-3px);
82
+ }
83
+ </style>
84
+
85
+ <div class="team-grid">
86
+ <div class="member-card animate-on-scroll">
87
+ <img src="http://static.photos/people/640x360/1" class="member-image" alt="Team Member">
88
+ <div class="member-info">
89
+ <h3 class="member-name">Alex Johnson</h3>
90
+ <p class="member-role">Lead Developer</p>
91
+ <p class="member-bio">10+ years experience in full-stack development with expertise in React, Node.js and cloud architecture.</p>
92
+ <div class="social-links">
93
+ <a href="#" class="social-link"><i data-feather="github"></i></a>
94
+ <a href="#" class="social-link"><i data-feather="twitter"></i></a>
95
+ <a href="#" class="social-link"><i data-feather="linkedin"></i></a>
96
+ </div>
97
+ </div>
98
+ </div>
99
+
100
+ <div class="member-card animate-on-scroll">
101
+ <img src="http://static.photos/people/640x360/2" class="member-image" alt="Team Member">
102
+ <div class="member-info">
103
+ <h3 class="member-name">Sarah Williams</h3>
104
+ <p class="member-role">UI/UX Designer</p>
105
+ <p class="member-bio">Creative designer specializing in user experience and interactive interfaces for web and mobile.</p>
106
+ <div class="social-links">
107
+ <a href="#" class="social-link"><i data-feather="github"></i></a>
108
+ <a href="#" class="social-link"><i data-feather="twitter"></i></a>
109
+ <a href="#" class="social-link"><i data-feather="dribbble"></i></a>
110
+ </div>
111
+ </div>
112
+ </div>
113
+
114
+ <div class="member-card animate-on-scroll">
115
+ <img src="http://static.photos/people/640x360/3" class="member-image" alt="Team Member">
116
+ <div class="member-info">
117
+ <h3 class="member-name">Michael Chen</h3>
118
+ <p class="member-role">AI Engineer</p>
119
+ <p class="member-bio">Machine learning specialist with focus on computer vision and natural language processing.</p>
120
+ <div class="social-links">
121
+ <a href="#" class="social-link"><i data-feather="github"></i></a>
122
+ <a href="#" class="social-link"><i data-feather="twitter"></i></a>
123
+ <a href="#" class="social-link"><i data-feather="linkedin"></i></a>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ `;
129
+ }
130
+ }
131
+ customElements.define('team-members', TeamMembers);
projects.html ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SuperNova Projects | Our Portfolio</title>
7
+ <meta name="description" content="Showcase of SuperNova's innovative projects and client work">
8
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <link rel="stylesheet" href="style.css">
12
+ </head>
13
+ <body class="bg-dark-900 text-gray-200 min-h-screen">
14
+ <custom-navbar></custom-navbar>
15
+ <script src="components/navbar.js"></script>
16
+
17
+ <main class="max-w-6xl mx-auto py-16 px-4">
18
+ <h1 class="text-5xl font-bold mb-4 text-center bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">Our Projects</h1>
19
+ <p class="text-xl text-center mb-12 max-w-3xl mx-auto">Innovative solutions that push technological boundaries</p>
20
+
21
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-16">
22
+ <div class="project-card bg-gradient-to-br from-dark-800 to-dark-900 rounded-2xl p-8 border border-dark-700 hover:border-primary-500 transition-all duration-300">
23
+ <div class="flex items-center gap-4 mb-6">
24
+ <div class="w-16 h-16 rounded-xl bg-primary-500/10 flex items-center justify-center">
25
+ <i data-feather="cpu" class="text-primary-500 w-8 h-8"></i>
26
+ </div>
27
+ <h2 class="text-2xl font-bold">AI-Powered Analytics Platform</h2>
28
+ </div>
29
+ <p class="text-gray-400 mb-6">A revolutionary business intelligence tool that uses machine learning to predict market trends with 92% accuracy.</p>
30
+ <div class="flex flex-wrap gap-2 mb-6">
31
+ <span class="text-xs px-3 py-1 bg-primary-500/20 text-primary-500 rounded-full">Machine Learning</span>
32
+ <span class="text-xs px-3 py-1 bg-secondary-500/20 text-secondary-500 rounded-full">Big Data</span>
33
+ <span class="text-xs px-3 py-1 bg-purple-500/20 text-purple-500 rounded-full">Cloud Computing</span>
34
+ </div>
35
+ <a href="#" class="inline-flex items-center gap-2 text-primary-500 hover:text-primary-400 transition-colors">
36
+ View Case Study <i data-feather="arrow-right" class="w-4 h-4"></i>
37
+ </a>
38
+ </div>
39
+
40
+ <div class="project-card bg-gradient-to-br from-dark-800 to-dark-900 rounded-2xl p-8 border border-dark-700 hover:border-secondary-500 transition-all duration-300">
41
+ <div class="flex items-center gap-4 mb-6">
42
+ <div class="w-16 h-16 rounded-xl bg-secondary-500/10 flex items-center justify-center">
43
+ <i data-feather="lock" class="text-secondary-500 w-8 h-8"></i>
44
+ </div>
45
+ <h2 class="text-2xl font-bold">Blockchain Voting System</h2>
46
+ </div>
47
+ <p class="text-gray-400 mb-6">A secure, decentralized voting platform ensuring transparency and preventing fraud in electoral processes.</p>
48
+ <div class="flex flex-wrap gap-2 mb-6">
49
+ <span class="text-xs px-3 py-1 bg-blue-500/20 text-blue-500 rounded-full">Blockchain</span>
50
+ <span class="text-xs px-3 py-1 bg-green-500/20 text-green-500 rounded-full">Smart Contracts</span>
51
+ <span class="text-xs px-3 py-1 bg-yellow-500/20 text-yellow-500 rounded-full">Zero-Knowledge Proofs</span>
52
+ </div>
53
+ <a href="#" class="inline-flex items-center gap-2 text-secondary-500 hover:text-secondary-400 transition-colors">
54
+ View Case Study <i data-feather="arrow-right" class="w-4 h-4"></i>
55
+ </a>
56
+ </div>
57
+ </div>
58
+
59
+ <h2 class="text-3xl font-bold mb-8 text-center">More Projects</h2>
60
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
61
+ <div class="bg-dark-800 rounded-xl p-6 border border-dark-700 hover:border-primary-500 transition-all">
62
+ <i data-feather="globe" class="w-8 h-8 text-primary-500 mb-4"></i>
63
+ <h3 class="text-xl font-bold mb-2">E-Commerce Platform</h3>
64
+ <p class="text-gray-400 mb-4">Scalable online marketplace with AI-powered recommendations.</p>
65
+ <a href="#" class="text-sm text-primary-500 hover:underline">Learn more</a>
66
+ </div>
67
+ <div class="bg-dark-800 rounded-xl p-6 border border-dark-700 hover:border-secondary-500 transition-all">
68
+ <i data-feather="smartphone" class="w-8 h-8 text-secondary-500 mb-4"></i>
69
+ <h3 class="text-xl font-bold mb-2">Health Tracking App</h3>
70
+ <p class="text-gray-400 mb-4">Mobile application for personalized health monitoring.</p>
71
+ <a href="#" class="text-sm text-secondary-500 hover:underline">Learn more</a>
72
+ </div>
73
+ <div class="bg-dark-800 rounded-xl p-6 border border-dark-700 hover:border-purple-500 transition-all">
74
+ <i data-feather="cloud" class="w-8 h-8 text-purple-500 mb-4"></i>
75
+ <h3 class="text-xl font-bold mb-2">Cloud Migration</h3>
76
+ <p class="text-gray-400 mb-4">Enterprise cloud infrastructure transformation.</p>
77
+ <a href="#" class="text-sm text-purple-500 hover:underline">Learn more</a>
78
+ </div>
79
+ </div>
80
+ </main>
81
+
82
+ <custom-footer></custom-footer>
83
+ <script src="components/footer.js"></script>
84
+ <script src="script.js"></script>
85
+ <script>
86
+ feather.replace();
87
+ </script>
88
+ </body>
89
+ </html>