Changes to themify.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+
+
+
+

Elevate Your Website with Themify

+

Premium WordPress Themes Designed for Speed and Elegance

+
+
+
+
+

Why Choose Themify?

+
+
+

Lightning Fast

+

Optimized for performance, ensuring your site loads in a flash.

+
+
+

Fully Responsive

+

Looks stunning on all devices, from desktops to smartphones.

+
+
+

Easy Customization

+

Intuitive settings panel for effortless customization.

+
+
+
+
+
+

Pricing Plans

+
+
+

Basic

+

$49

+
    +
  • 1 Theme License
  • +
  • 6 Months Support
  • +
  • Regular Updates
  • +
    +
    +
    +

    Pro

    +

    $99

    +
      +
    • 3 Theme Licenses
    • +
    • 1 Year Support
    • +
    • Priority Updates
    • +
      +
      +
      +

      Agency

      +

      $199

      +
        +
      • Unlimited Licenses
      • +
      • Lifetime Support
      • +
      • Exclusive Features
      • +
        +
        +
        +
        +
        +
        +

        What Our Customers Say

        +
        +
        +

        "Themify transformed my website into a professional masterpiece!"

        +

        - Jane Doe

        +
        +
        +

        "Incredible support and stunning designs. Highly recommend!"

        +

        - John Smith

        +
        +
        +
        +
        +
        +

        Get Started Today

        +
        +
        +
        +
        +
        +
        +
        +
        +
        +

        Follow us on social media for updates and tips.

        +
        index.scroll
        Changed around line 1
        + buildHtml
        + baseUrl https://themify.scroll.pub
        + metaTags
        + editButton /edit.html
        + title Themify - Premium WordPress Themes
        + style.css
        + body.html
        + script.js
        readme.scroll
        Changed around line 1
        + # 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
        script.js
        Changed around line 1
        + document.getElementById('contact-form').addEventListener('submit', function(event) {
        + event.preventDefault();
        + alert('Thank you for your message! We will get back to you soon.');
        + });
        style.css
        Changed around line 1
        + :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;
        + }
        + }