Tokiarivelo commited on
Commit
1d6106f
·
verified ·
1 Parent(s): 19504f6

A high-quality 3D isometric illustration of a website builder interface floating over a soft blue background. The design features a clean white browser window with rounded corners. Around it, various 3D UI elements are floating, including an image gallery icon, a colorful color wheel, typography settings with 'Aa' text, a video player icon, and a small code snippet window. Use a modern claymorphism style with soft shadows, smooth matte textures, and a pastel color palette (blues, pinks, and yellows). The lighting is bright and soft, creating a clean, professional, and creative tech aesthetic. High resolution, 8k render, Unreal Engine 5 style.

Browse files
Files changed (6) hide show
  1. README.md +8 -5
  2. components/footer.js +147 -0
  3. components/navbar.js +96 -0
  4. index.html +120 -19
  5. script.js +24 -0
  6. style.css +39 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelcraft Studio Builder
3
- emoji: 🚀
4
- colorFrom: purple
5
- colorTo: pink
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: PixelCraft Studio Builder 🎨
3
+ colorFrom: pink
4
+ colorTo: yellow
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
components/footer.js ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ background-color: #1e293b;
9
+ color: #f8fafc;
10
+ padding: 4rem 2rem;
11
+ }
12
+ .footer-container {
13
+ max-width: 1280px;
14
+ margin: 0 auto;
15
+ display: grid;
16
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
17
+ gap: 3rem;
18
+ }
19
+ .footer-logo {
20
+ font-size: 1.5rem;
21
+ font-weight: 700;
22
+ color: white;
23
+ text-decoration: none;
24
+ display: flex;
25
+ align-items: center;
26
+ gap: 0.5rem;
27
+ margin-bottom: 1.5rem;
28
+ }
29
+ .footer-description {
30
+ color: #94a3b8;
31
+ line-height: 1.6;
32
+ margin-bottom: 1.5rem;
33
+ }
34
+ .footer-heading {
35
+ font-size: 1.125rem;
36
+ font-weight: 600;
37
+ margin-bottom: 1.5rem;
38
+ }
39
+ .footer-links {
40
+ display: flex;
41
+ flex-direction: column;
42
+ gap: 0.75rem;
43
+ }
44
+ .footer-link {
45
+ color: #94a3b8;
46
+ text-decoration: none;
47
+ transition: color 0.2s;
48
+ }
49
+ .footer-link:hover {
50
+ color: white;
51
+ }
52
+ .social-links {
53
+ display: flex;
54
+ gap: 1rem;
55
+ margin-top: 1.5rem;
56
+ }
57
+ .social-link {
58
+ width: 2.5rem;
59
+ height: 2.5rem;
60
+ border-radius: 50%;
61
+ background-color: #334155;
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: center;
65
+ transition: all 0.2s;
66
+ }
67
+ .social-link:hover {
68
+ background-color: #3b82f6;
69
+ transform: translateY(-2px);
70
+ }
71
+ .copyright {
72
+ max-width: 1280px;
73
+ margin: 3rem auto 0;
74
+ padding-top: 2rem;
75
+ border-top: 1px solid #334155;
76
+ color: #94a3b8;
77
+ text-align: center;
78
+ }
79
+ @media (max-width: 768px) {
80
+ .footer-container {
81
+ grid-template-columns: 1fr;
82
+ }
83
+ }
84
+ </style>
85
+ <div class="footer-container">
86
+ <div>
87
+ <a href="/" class="footer-logo">
88
+ <i data-feather="box"></i>
89
+ PixelCraft
90
+ </a>
91
+ <p class="footer-description">
92
+ The most intuitive website builder with 3D design elements. Create beautiful websites without coding.
93
+ </p>
94
+ <div class="social-links">
95
+ <a href="#" class="social-link">
96
+ <i data-feather="twitter"></i>
97
+ </a>
98
+ <a href="#" class="social-link">
99
+ <i data-feather="facebook"></i>
100
+ </a>
101
+ <a href="#" class="social-link">
102
+ <i data-feather="instagram"></i>
103
+ </a>
104
+ <a href="#" class="social-link">
105
+ <i data-feather="linkedin"></i>
106
+ </a>
107
+ </div>
108
+ </div>
109
+
110
+ <div>
111
+ <h3 class="footer-heading">Product</h3>
112
+ <div class="footer-links">
113
+ <a href="#" class="footer-link">Features</a>
114
+ <a href="#" class="footer-link">Templates</a>
115
+ <a href="#" class="footer-link">Integrations</a>
116
+ <a href="#" class="footer-link">Pricing</a>
117
+ </div>
118
+ </div>
119
+
120
+ <div>
121
+ <h3 class="footer-heading">Resources</h3>
122
+ <div class="footer-links">
123
+ <a href="#" class="footer-link">Documentation</a>
124
+ <a href="#" class="footer-link">Tutorials</a>
125
+ <a href="#" class="footer-link">Blog</a>
126
+ <a href="#" class="footer-link">Support</a>
127
+ </div>
128
+ </div>
129
+
130
+ <div>
131
+ <h3 class="footer-heading">Company</h3>
132
+ <div class="footer-links">
133
+ <a href="#" class="footer-link">About</a>
134
+ <a href="#" class="footer-link">Careers</a>
135
+ <a href="#" class="footer-link">Contact</a>
136
+ <a href="#" class="footer-link">Press</a>
137
+ </div>
138
+ </div>
139
+ </div>
140
+
141
+ <div class="copyright">
142
+ &copy; ${new Date().getFullYear()} PixelCraft Studio. All rights reserved.
143
+ </div>
144
+ `;
145
+ }
146
+ }
147
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ :host {
7
+ display: block;
8
+ width: 100%;
9
+ position: sticky;
10
+ top: 0;
11
+ z-index: 50;
12
+ background: rgba(255, 255, 255, 0.8);
13
+ backdrop-filter: blur(10px);
14
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
15
+ }
16
+ nav {
17
+ max-width: 1280px;
18
+ margin: 0 auto;
19
+ padding: 1.5rem 2rem;
20
+ display: flex;
21
+ justify-content: space-between;
22
+ align-items: center;
23
+ }
24
+ .logo {
25
+ font-size: 1.5rem;
26
+ font-weight: 700;
27
+ color: #3b82f6;
28
+ text-decoration: none;
29
+ display: flex;
30
+ align-items: center;
31
+ gap: 0.5rem;
32
+ }
33
+ .nav-links {
34
+ display: flex;
35
+ gap: 2rem;
36
+ }
37
+ .nav-link {
38
+ color: #4b5563;
39
+ text-decoration: none;
40
+ font-weight: 500;
41
+ transition: color 0.2s;
42
+ }
43
+ .nav-link:hover {
44
+ color: #3b82f6;
45
+ }
46
+ .nav-cta {
47
+ background-color: #3b82f6;
48
+ color: white;
49
+ padding: 0.5rem 1.5rem;
50
+ border-radius: 0.5rem;
51
+ font-weight: 500;
52
+ transition: all 0.2s;
53
+ }
54
+ .nav-cta:hover {
55
+ background-color: #2563eb;
56
+ transform: translateY(-2px);
57
+ }
58
+ .mobile-menu-btn {
59
+ display: none;
60
+ background: none;
61
+ border: none;
62
+ color: #4b5563;
63
+ cursor: pointer;
64
+ }
65
+ @media (max-width: 768px) {
66
+ .nav-links {
67
+ display: none;
68
+ }
69
+ .mobile-menu-btn {
70
+ display: block;
71
+ }
72
+ }
73
+ </style>
74
+ <nav>
75
+ <a href="/" class="logo">
76
+ <i data-feather="box"></i>
77
+ PixelCraft
78
+ </a>
79
+
80
+ <div class="nav-links">
81
+ <a href="#features" class="nav-link">Features</a>
82
+ <a href="#templates" class="nav-link">Templates</a>
83
+ <a href="#pricing" class="nav-link">Pricing</a>
84
+ <a href="#resources" class="nav-link">Resources</a>
85
+ <a href="#login" class="nav-link">Login</a>
86
+ <a href="#signup" class="nav-cta">Sign Up Free</a>
87
+ </div>
88
+
89
+ <button class="mobile-menu-btn">
90
+ <i data-feather="menu"></i>
91
+ </button>
92
+ </nav>
93
+ `;
94
+ }
95
+ }
96
+ customElements.define('custom-navbar', CustomNavbar);
index.html CHANGED
@@ -1,19 +1,120 @@
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
+ <title>PixelCraft Studio | Modern Website Builder</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
13
+ </style>
14
+ </head>
15
+ <body class="font-poppins bg-gradient-to-br from-blue-50 to-pink-50 min-h-screen">
16
+ <custom-navbar></custom-navbar>
17
+
18
+ <main class="container mx-auto px-4 py-12">
19
+ <!-- Hero Section -->
20
+ <section class="flex flex-col lg:flex-row items-center justify-between gap-12 mb-24">
21
+ <div class="lg:w-1/2 space-y-6">
22
+ <h1 class="text-5xl font-bold text-gray-800 leading-tight">
23
+ Build Stunning Websites <span class="text-blue-500">Without Code</span>
24
+ </h1>
25
+ <p class="text-lg text-gray-600">
26
+ PixelCraft Studio brings your ideas to life with our intuitive drag-and-drop interface and beautiful 3D design elements.
27
+ </p>
28
+ <div class="flex gap-4">
29
+ <button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-3 rounded-xl shadow-lg transition-all transform hover:scale-105">
30
+ Start Building Free
31
+ </button>
32
+ <button class="border-2 border-gray-300 hover:border-blue-500 text-gray-700 px-6 py-3 rounded-xl transition-all">
33
+ Watch Demo
34
+ </button>
35
+ </div>
36
+ </div>
37
+
38
+ <div class="lg:w-1/2 relative">
39
+ <div class="relative w-full aspect-square">
40
+ <!-- 3D Isometric Illustration Placeholder -->
41
+ <div class="absolute inset-0 bg-white rounded-3xl shadow-2xl p-6 transform rotate-3">
42
+ <div class="h-full w-full bg-gradient-to-br from-blue-100 to-pink-100 rounded-2xl flex items-center justify-center">
43
+ <div class="text-center">
44
+ <i data-feather="layout" class="w-16 h-16 text-blue-500 mx-auto"></i>
45
+ <p class="mt-4 text-gray-500">Your Website Preview</p>
46
+ </div>
47
+ </div>
48
+ </div>
49
+
50
+ <!-- Floating UI Elements -->
51
+ <div class="absolute -top-8 -left-8 w-20 h-20 bg-pink-100 rounded-2xl shadow-lg flex items-center justify-center transform rotate-6">
52
+ <i data-feather="image" class="w-8 h-8 text-pink-500"></i>
53
+ </div>
54
+ <div class="absolute -bottom-8 -right-8 w-20 h-20 bg-yellow-100 rounded-2xl shadow-lg flex items-center justify-center transform -rotate-6">
55
+ <i data-feather="type" class="w-8 h-8 text-yellow-500"></i>
56
+ </div>
57
+ <div class="absolute top-1/4 -right-12 w-16 h-16 bg-blue-100 rounded-2xl shadow-lg flex items-center justify-center transform rotate-12">
58
+ <i data-feather="code" class="w-6 h-6 text-blue-500"></i>
59
+ </div>
60
+ <div class="absolute bottom-1/4 -left-12 w-16 h-16 bg-purple-100 rounded-2xl shadow-lg flex items-center justify-center transform -rotate-12">
61
+ <i data-feather="sliders" class="w-6 h-6 text-purple-500"></i>
62
+ </div>
63
+ </div>
64
+ </div>
65
+ </section>
66
+
67
+ <!-- Features Section -->
68
+ <section class="mb-24">
69
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Powerful Features</h2>
70
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
71
+ <div class="bg-white p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all">
72
+ <div class="w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
73
+ <i data-feather="edit-3" class="w-8 h-8 text-blue-500"></i>
74
+ </div>
75
+ <h3 class="text-xl font-semibold mb-3">Drag & Drop</h3>
76
+ <p class="text-gray-600">Intuitive interface that lets you build without coding knowledge.</p>
77
+ </div>
78
+ <div class="bg-white p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all">
79
+ <div class="w-16 h-16 bg-pink-100 rounded-xl flex items-center justify-center mb-6">
80
+ <i data-feather="palette" class="w-8 h-8 text-pink-500"></i>
81
+ </div>
82
+ <h3 class="text-xl font-semibold mb-3">Color Customization</h3>
83
+ <p class="text-gray-600">Full control over your color scheme with our advanced color wheel.</p>
84
+ </div>
85
+ <div class="bg-white p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all">
86
+ <div class="w-16 h-16 bg-yellow-100 rounded-xl flex items-center justify-center mb-6">
87
+ <i data-feather="type" class="w-8 h-8 text-yellow-500"></i>
88
+ </div>
89
+ <h3 class="text-xl font-semibold mb-3">Typography</h3>
90
+ <p class="text-gray-600">Beautiful fonts and text styling options for perfect readability.</p>
91
+ </div>
92
+ <div class="bg-white p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all">
93
+ <div class="w-16 h-16 bg-purple-100 rounded-xl flex items-center justify-center mb-6">
94
+ <i data-feather="smartphone" class="w-8 h-8 text-purple-500"></i>
95
+ </div>
96
+ <h3 class="text-xl font-semibold mb-3">Responsive Design</h3>
97
+ <p class="text-gray-600">Your site looks perfect on all devices automatically.</p>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- CTA Section -->
103
+ <section class="bg-gradient-to-r from-blue-500 to-purple-500 rounded-3xl p-12 text-center text-white mb-24">
104
+ <h2 class="text-3xl font-bold mb-6">Ready to Create Something Amazing?</h2>
105
+ <p class="text-xl mb-8 opacity-90">Join thousands of creators building with PixelCraft Studio.</p>
106
+ <button class="bg-white text-blue-500 hover:bg-gray-100 px-8 py-4 rounded-xl shadow-lg text-lg font-semibold transition-all transform hover:scale-105">
107
+ Get Started - It's Free
108
+ </button>
109
+ </section>
110
+ </main>
111
+
112
+ <custom-footer></custom-footer>
113
+
114
+ <script src="components/navbar.js"></script>
115
+ <script src="components/footer.js"></script>
116
+ <script src="script.js"></script>
117
+ <script>feather.replace();</script>
118
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
119
+ </body>
120
+ </html>
script.js ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Main JavaScript file
2
+ document.addEventListener('DOMContentLoaded', function() {
3
+ // Animation for floating elements
4
+ const floatingElements = document.querySelectorAll('.floating-element');
5
+ floatingElements.forEach((el, index) => {
6
+ el.style.animationDelay = `${index * 0.5}s`;
7
+ });
8
+
9
+ // Smooth scrolling for anchor links
10
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
11
+ anchor.addEventListener('click', function (e) {
12
+ e.preventDefault();
13
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
14
+ behavior: 'smooth'
15
+ });
16
+ });
17
+ });
18
+
19
+ // Initialize tooltips
20
+ const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
21
+ tooltipTriggerList.map(function (tooltipTriggerEl) {
22
+ return new bootstrap.Tooltip(tooltipTriggerEl);
23
+ });
24
+ });
style.css CHANGED
@@ -1,28 +1,49 @@
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
 
 
 
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
28
  }
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom styles that can't be done with Tailwind */
2
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
3
+
4
  body {
5
+ font-family: 'Poppins', sans-serif;
6
+ }
7
+
8
+ /* Custom animations */
9
+ @keyframes float {
10
+ 0%, 100% {
11
+ transform: translateY(0);
12
+ }
13
+ 50% {
14
+ transform: translateY(-10px);
15
+ }
16
  }
17
 
18
+ .floating-element {
19
+ animation: float 6s ease-in-out infinite;
 
20
  }
21
 
22
+ /* Claymorphism effect */
23
+ .clay-card {
24
+ background: rgba(255, 255, 255, 0.7);
25
+ backdrop-filter: blur(10px);
26
+ border-radius: 20px;
27
+ box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1),
28
+ -20px -20px 50px rgba(255, 255, 255, 0.5);
29
+ border: 1px solid rgba(255, 255, 255, 0.3);
30
  }
31
 
32
+ /* Custom scrollbar */
33
+ ::-webkit-scrollbar {
34
+ width: 8px;
 
 
 
35
  }
36
 
37
+ ::-webkit-scrollbar-track {
38
+ background: #f1f1f1;
39
+ border-radius: 10px;
40
  }
41
+
42
+ ::-webkit-scrollbar-thumb {
43
+ background: #888;
44
+ border-radius: 10px;
45
+ }
46
+
47
+ ::-webkit-scrollbar-thumb:hover {
48
+ background: #555;
49
+ }