commit dc971ff9611a11ee019d0c3a97d65664827d676d
Author: root <root@hub.scroll.pub> Date: 2024-12-27 07:56:27 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..c18d737 --- /dev/null +++ b/body.html @@ -0,0 +1,100 @@ +<header> + <nav> + <a href="#features">Features</a> + <a href="#pricing">Pricing</a> + <a href="#testimonials">Testimonials</a> + <a href="#contact" class="cta">Get Started</a> + </nav> + <div class="hero"> + <h1>Elevate Your Website with Themify</h1> + <p>Premium WordPress Themes Designed for Speed and Elegance</p> + <a href="#pricing" class="cta">Explore Themes</a> + </div> +</header> + +<section id="features"> + <h2>Why Choose Themify?</h2> + <div class="feature-grid"> + <div class="feature"> + <h3>Lightning Fast</h3> + <p>Optimized for performance, ensuring your site loads in a flash.</p> + </div> + <div class="feature"> + <h3>Fully Responsive</h3> + <p>Looks stunning on all devices, from desktops to smartphones.</p> + </div> + <div class="feature"> + <h3>Easy Customization</h3> + <p>Intuitive settings panel for effortless customization.</p> + </div> + </div> +</section> + +<section id="pricing"> + <h2>Pricing Plans</h2> + <div class="pricing-grid"> + <div class="plan"> + <h3>Basic</h3> + <p class="price">$49</p> + <ul> + <li>1 Theme License</li> + <li>6 Months Support</li> + <li>Regular Updates</li> + </ul> + <a href="#contact" class="cta">Buy Now</a> + </div> + <div class="plan featured"> + <h3>Pro</h3> + <p class="price">$99</p> + <ul> + <li>3 Theme Licenses</li> + <li>1 Year Support</li> + <li>Priority Updates</li> + </ul> + <a href="#contact" class="cta">Buy Now</a> + </div> + <div class="plan"> + <h3>Agency</h3> + <p class="price">$199</p> + <ul> + <li>Unlimited Licenses</li> + <li>Lifetime Support</li> + <li>Exclusive Features</li> + </ul> + <a href="#contact" class="cta">Buy Now</a> + </div> + </div> +</section> + +<section id="testimonials"> + <h2>What Our Customers Say</h2> + <div class="testimonial-grid"> + <div class="testimonial"> + <p>"Themify transformed my website into a professional masterpiece!"</p> + <p class="author">- Jane Doe</p> + </div> + <div class="testimonial"> + <p>"Incredible support and stunning designs. Highly recommend!"</p> + <p class="author">- John Smith</p> + </div> + </div> +</section> + +<section id="contact"> + <h2>Get Started Today</h2> + <form id="contact-form"> + <input type="text" placeholder="Your Name" required> + <input type="email" placeholder="Your Email" required> + <textarea placeholder="Your Message" required></textarea> + <button type="submit" class="cta">Send Message</button> + </form> +</section> + +<footer> + <p>Follow us on social media for updates and tips.</p> + <div class="social-links"> + <a href="#">Twitter</a> + <a href="#">Facebook</a> + <a href="#">Instagram</a> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..28aeecc --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://themify.scroll.pub +metaTags +editButton /edit.html +title Themify - Premium WordPress Themes +style.css +body.html +script.js \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..1014db8 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# themify.scroll.pub +Website generated by DeepSeek from prompt: create a website that is selling a wordpress theme, it should look nice and load fast. please do not use react or tailwind \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..f957467 --- /dev/null +++ b/script.js @@ -0,0 +1,4 @@ +document.getElementById('contact-form').addEventListener('submit', function(event) { + event.preventDefault(); + alert('Thank you for your message! We will get back to you soon.'); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..283eaa9 --- /dev/null +++ b/style.css @@ -0,0 +1,138 @@ +:root { + --primary-color: #3498db; + --secondary-color: #2ecc71; + --background-color: #f4f4f4; + --text-color: #333; + --header-height: 80px; +} + +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; +} + +header { + background: var(--primary-color); + color: white; + padding: 1rem 0; + text-align: center; +} + +nav { + display: flex; + justify-content: center; + gap: 20px; + margin-bottom: 20px; +} + +nav a { + color: white; + text-decoration: none; + font-weight: bold; +} + +.hero { + padding: 2rem; +} + +.hero h1 { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 2rem; +} + +.cta { + background: var(--secondary-color); + color: white; + padding: 0.5rem 1rem; + text-decoration: none; + border-radius: 5px; +} + +section { + padding: 2rem; + text-align: center; +} + +.feature-grid, .pricing-grid, .testimonial-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; + margin-top: 2rem; +} + +.feature, .plan, .testimonial { + background: white; + padding: 1rem; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.plan.featured { + border: 2px solid var(--primary-color); +} + +.price { + font-size: 2rem; + color: var(--primary-color); + margin: 1rem 0; +} + +form { + max-width: 400px; + margin: 0 auto; + text-align: left; +} + +form input, form textarea { + width: 100%; + padding: 0.5rem; + margin-bottom: 1rem; + border: 1px solid #ccc; + border-radius: 5px; +} + +form button { + width: 100%; +} + +footer { + background: var(--primary-color); + color: white; + text-align: center; + padding: 1rem 0; +} + +.social-links { + display: flex; + justify-content: center; + gap: 20px; + margin-top: 1rem; +} + +.social-links a { + color: white; + text-decoration: none; +} + +@media (max-width: 768px) { + nav { + flex-direction: column; + } + + .hero h1 { + font-size: 2rem; + } + + .hero p { + font-size: 1rem; + } +} \ No newline at end of file