Get 50% Off + Additional 10% Off on Home Furniture

Buy 100% Customisable Furniture at Guarented Home Solutions!

Upgrade your space with 100% customizable furniture from Guarented Home Solutions! Tailor every piece to match your style — choose colors, fabrics, and finishes. Designed for comfort and built to last, our furniture brings your vision to life. Experience the joy of personalized living. Shop now for unique, made-for-you pieces!

{% for product in collections['sofa'].products %}
  <div>
    <h2>{{ product.title }}</h2>
    <a href="{{ product.url }}"><img src="{{ product.featured_image | image_url }}" alt="{{ product.title }}"></a>
    <p>{{ product.price | money }}</p>
    <a href="{{ product.url }}">View Product</a>
  </div>
{% endfor %}

 

<form method="post" action="/contact">
  <label for="name">Name</label>
  <input type="text" name="name" id="name" required>
  
  <label for="number">Phone Number</label>
  <input type="tel" name="number" id="number" required>
  
  <label for="email">Email</label>
  <input type="email" name="email" id="email" required>
  
  <label for="message">Message</label>
  <textarea name="message" id="message" required></textarea>
  
  <button type="submit">Submit</button>
</form>