tpsc-clone / index.html
WizardImon's picture
undefined - Initial Deployment
ea98fe3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quartz Worktops | Upgrade Your Kitchen with Natural Stone Surfaces</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
background-size: cover;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.02);
}
.slider-control {
transition: all 0.3s ease;
}
.slider-control:hover {
background-color: rgba(0,0,0,0.2);
}
.filter-section {
transition: all 0.3s ease;
}
.filter-section:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="text-2xl font-bold text-gray-800">BRAND_NAME</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-gray-800 hover:text-amber-600 transition">Home</a>
<a href="#" class="text-gray-800 hover:text-amber-600 transition">Products</a>
<a href="#" class="text-gray-800 hover:text-amber-600 transition">About</a>
<a href="#" class="text-gray-800 hover:text-amber-600 transition">Gallery</a>
<a href="#" class="text-gray-800 hover:text-amber-600 transition">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<button class="md:hidden text-gray-800">
<i class="fas fa-bars text-xl"></i>
</button>
<button class="hidden md:block bg-amber-600 text-white px-4 py-2 rounded hover:bg-amber-700 transition">
Get a Quote
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient py-20 md:py-32">
<div class="container mx-auto px-4">
<div class="max-w-2xl">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-6">Quartz Worktops: Upgrade Your Kitchen with Natural Stone Surfaces!</h1>
<p class="text-lg text-gray-700 mb-8">The ultimate choice for stylish kitchens and luxurious bathrooms. Engineered to perfection, these durable surfaces offer a kaleidoscope of colours and patterns to match your unique style.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-amber-600 text-white px-6 py-3 rounded hover:bg-amber-700 transition font-medium">
View Collection
</button>
<button class="bg-white text-gray-800 px-6 py-3 rounded hover:bg-gray-100 transition font-medium border border-gray-200">
Request Samples
</button>
</div>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="bg-gray-50 py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-12">
<div class="flex items-center">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/06/Review-Google.png" alt="Google Reviews" class="h-12">
</div>
<div class="flex items-center">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/06/Review-Houzz.png" alt="Houzz Reviews" class="h-12">
</div>
<div class="flex items-center space-x-2">
<div class="text-amber-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-700 font-medium">Rated 4.9/5 on Trustpilot</span>
</div>
</div>
</div>
</section>
<!-- Product Filter & Grid -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row">
<!-- Filters -->
<div class="lg:w-1/4 pr-0 lg:pr-8 mb-8 lg:mb-0">
<div class="bg-white p-6 rounded-lg border border-gray-200 filter-section">
<h3 class="text-xl font-bold mb-6 text-gray-800">Filter</h3>
<div class="mb-6">
<h4 class="font-semibold mb-3 text-gray-700">Price Range</h4>
<div class="space-y-2">
<div class="flex items-center">
<input type="checkbox" id="price1" class="mr-2">
<label for="price1" class="text-gray-600">£0 - £200</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="price2" class="mr-2">
<label for="price2" class="text-gray-600">£201 - £400</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="price3" class="mr-2" checked>
<label for="price3" class="text-gray-600">£401 - £500</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="price4" class="mr-2">
<label for="price4" class="text-gray-600">£501+</label>
</div>
</div>
</div>
<div class="mb-6">
<h4 class="font-semibold mb-3 text-gray-700">Colour</h4>
<div class="grid grid-cols-3 gap-2">
<div class="h-8 rounded bg-gray-200 cursor-pointer hover:opacity-80" title="White"></div>
<div class="h-8 rounded bg-gray-400 cursor-pointer hover:opacity-80" title="Grey"></div>
<div class="h-8 rounded bg-amber-100 cursor-pointer hover:opacity-80" title="Cream"></div>
<div class="h-8 rounded bg-black cursor-pointer hover:opacity-80" title="Black"></div>
<div class="h-8 rounded bg-blue-100 cursor-pointer hover:opacity-80" title="Blue"></div>
<div class="h-8 rounded bg-red-100 cursor-pointer hover:opacity-80" title="Red"></div>
</div>
</div>
<div class="mb-6">
<h4 class="font-semibold mb-3 text-gray-700">Brands</h4>
<div class="space-y-2">
<div class="flex items-center">
<input type="checkbox" id="brand1" class="mr-2" checked>
<label for="brand1" class="text-gray-600">Bloomstones</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="brand2" class="mr-2">
<label for="brand2" class="text-gray-600">Caesarstone</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="brand3" class="mr-2">
<label for="brand3" class="text-gray-600">Silestone</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="brand4" class="mr-2">
<label for="brand4" class="text-gray-600">Compac</label>
</div>
</div>
</div>
<div>
<h4 class="font-semibold mb-3 text-gray-700">Style</h4>
<div class="space-y-2">
<div class="flex items-center">
<input type="checkbox" id="style1" class="mr-2">
<label for="style1" class="text-gray-600">Marble Effect</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="style2" class="mr-2">
<label for="style2" class="text-gray-600">Solid Color</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="style3" class="mr-2">
<label for="style3" class="text-gray-600">Speckled</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="style4" class="mr-2">
<label for="style4" class="text-gray-600">Veined</label>
</div>
</div>
</div>
</div>
</div>
<!-- Product Grid -->
<div class="lg:w-3/4">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-bold text-gray-800">Our Quartz Collection</h2>
<div class="flex items-center">
<span class="mr-2 text-gray-600">Sort by:</span>
<select class="border border-gray-300 rounded px-3 py-1 bg-white">
<option>Most Popular</option>
<option>Price: Low to High</option>
<option>Price: High to Low</option>
<option>Newest</option>
</select>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Product Card 1 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Perola-Quartz-BST-PEROLA.jpg" alt="Perola Quartz" class="w-full h-full object-cover">
<div class="absolute top-2 right-2 bg-amber-600 text-white text-xs font-bold px-2 py-1 rounded">
NEW
</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Perola Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Grey</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product Card 2 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Grigio-Sparkle-Light-Quartz-BST-GRISPLI.jpg" alt="Grigio Sparkle Light Quartz" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Grigio Sparkle Light Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Grey</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product Card 3 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Carrara-Glacier-Quartz-BST-CARGLA.jpg" alt="Carrara Glacier Quartz" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Carrara Glacier Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">White</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product Card 4 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Bianco-Calcatta-Quartz-BST-BIACAL.jpg" alt="Bianco Calcatta Quartz" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Bianco Calcatta Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Grey</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product Card 5 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Windermere-Quartz-Worktop-BST-WINDER.jpg" alt="Windermere Quartz" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Windermere Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Cream</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product Card 6 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md product-card transition duration-300">
<div class="relative overflow-hidden h-64">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/11/Vagli-Leathered-Quartz-BST-VAGLEA.jpg" alt="Vagli Leathered Quartz" class="w-full h-full object-cover">
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-2 text-gray-800">Vagli Leathered Quartz</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Bloomstones</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Quartz</span>
<span class="bg-gray-100 text-gray-700 text-xs px-2 py-1 rounded">Grey</span>
</div>
<div class="flex justify-between items-center">
<span class="font-bold text-gray-800">£401 - £500</span>
<button class="text-amber-600 hover:text-amber-700 transition">
<i class="fas fa-shopping-cart"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Pagination -->
<div class="mt-12 flex justify-center">
<nav class="flex items-center space-x-2">
<button class="px-3 py-1 rounded border border-gray-300 bg-gray-100 text-gray-700">
<i class="fas fa-chevron-left"></i>
</button>
<button class="px-3 py-1 rounded border border-gray-300 bg-amber-600 text-white">1</button>
<button class="px-3 py-1 rounded border border-gray-300 hover:bg-gray-100">2</button>
<button class="px-3 py-1 rounded border border-gray-300 hover:bg-gray-100">3</button>
<span class="px-2">...</span>
<button class="px-3 py-1 rounded border border-gray-300 hover:bg-gray-100">25</button>
<button class="px-3 py-1 rounded border border-gray-300 hover:bg-gray-100">
<i class="fas fa-chevron-right"></i>
</button>
</nav>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Features of Quartz</h2>
<p class="text-gray-600 max-w-3xl mx-auto">At BRAND_NAME, we specialise in customising surfaces to fit your unique style and space. Whether you're a homeowner or business owner, our expert team can create and install stunning countertops that will elevate any area of your property.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-amber-600 mb-4 text-4xl">
<i class="fas fa-gem"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Customisation</h3>
<p class="text-gray-600">We take pride in offering personalised edge detailing and shaping options to enhance the appearance of your counters. From cut-outs to drainer grooves and recesses, no detail is too small for us to customise according to your preferences.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-amber-600 mb-4 text-4xl">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Durability</h3>
<p class="text-gray-600">With unmatched durability, these surfaces are the perfect choice for kitchens and beyond. But don't just take our word for it – check out our recent projects to see how our craftsmanship seamlessly integrates into various spaces.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
<div class="text-amber-600 mb-4 text-4xl">
<i class="fas fa-heart"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Satisfaction</h3>
<p class="text-gray-600">Join countless satisfied customers who consider us the go-to experts for surfaces they love! Our dedication to quality and customer service ensures you'll be delighted with your new quartz worktops.</p>
</div>
</div>
</div>
</section>
<!-- Why Choose Quartz -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Why Choose Quartz for Your Kitchen Worktop</h2>
<p class="text-gray-600 mb-6">A high-quality surface can make your kitchen look stunning and highly practical. Here's why:</p>
<div class="space-y-6">
<div>
<h3 class="font-bold text-xl text-gray-800 mb-2 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-check-circle"></i></span>
Durability and Strength
</h3>
<p class="text-gray-600">These surfaces are incredibly tough. Made from natural minerals and polymers, they can handle daily kitchen tasks without damage. Unlike other materials, they are non-porous, making them highly resistant to stains.</p>
</div>
<div>
<h3 class="font-bold text-xl text-gray-800 mb-2 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-check-circle"></i></span>
Easy Maintenance
</h3>
<p class="text-gray-600">One of the best reasons to choose quartz over laminate or wood is its low maintenance. Unlike granite or marble, quartz doesn't need regular sealing. Just clean it with mild soap and water to keep it looking new year after year.</p>
</div>
<div>
<h3 class="font-bold text-xl text-gray-800 mb-2 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-check-circle"></i></span>
Aesthetic Appeal
</h3>
<p class="text-gray-600">Quartz is undeniably beautiful. It comes in various colours and patterns, from sleek solid colours to intricate designs that mimic marble. Whether you prefer a glossy modern look or a matte finish, quartz can match your style.</p>
</div>
</div>
</div>
<div class="lg:w-1/2">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/07/Why-Choose-Quartz-for-Your-Kitchen-Worktop.jpg" alt="Quartz Kitchen Worktop" class="w-full rounded-lg shadow-md">
</div>
</div>
</div>
</section>
<!-- Choosing the Right Surface -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Choosing the Right Surface</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Finding the perfect countertop can be exciting. Here are some tips to help you choose the right quartz worktop for your kitchen.</p>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-12">
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl mb-3 text-gray-800 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-palette"></i></span>
Colour and Pattern
</h3>
<p class="text-gray-600">Quartz comes in many colours and patterns, from simple monochromatic to vibrant with complex veins. Consider your kitchen lighting—lighter colours can brighten the space, while darker shades add depth.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl mb-3 text-gray-800 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-brush"></i></span>
Finish
</h3>
<p class="text-gray-600">The finish affects the look and feel of your worktop. Polished surfaces are shiny and highlight the crystals in the quartz, while matte finishes offer a sophisticated look and hide smudges and fingerprints.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl mb-3 text-gray-800 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-couch"></i></span>
Match with Kitchen Décor
</h3>
<p class="text-gray-600">Your worktop should complement your kitchen's style. For modern kitchens, choose sleek edges and minimalist colours. Traditional kitchens benefit from richer tones or classic white marbled effects.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl mb-3 text-gray-800 flex items-center">
<span class="text-amber-600 mr-2"><i class="fas fa-pound-sign"></i></span>
Budget and Pricing
</h3>
<p class="text-gray-600">Quartz prices vary based on thickness (usually 20mm-30mm), quality, brand, and fabrication details like edge designs or sink cut-outs. Set a realistic budget early on to guide your selection.</p>
</div>
</div>
<div class="text-center">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/07/Choosing-the-Right-Quartz-Worktop.jpg" alt="Choosing Quartz Worktop" class="rounded-lg shadow-md mx-auto max-w-full">
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Customers Say</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Don't just take our word for it - hear from our satisfied customers about their experience with BRAND_NAME quartz worktops.</p>
</div>
<div class="relative">
<!-- Testimonial Slider -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-6 rounded-lg testimonial-card">
<div class="flex items-center mb-4">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/08/Joanna-Upton.png" alt="Joanna Upton" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Joanna Upton</h4>
<div class="flex items-center">
<div class="text-amber-500 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">TrustPilot</span>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-4">"What a fantastic company, one thing I've learnt doing a full house renovation is choose suppliers wisely and I can't rave enough about these guys. From initial consultation with Ollie who was superb to samples being sent."</p>
<div class="text-gray-500 text-sm">July 28, 2021</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-6 rounded-lg testimonial-card">
<div class="flex items-center mb-4">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/08/Debbie-Harbron.png" alt="Debbie Harbron" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Debbie Harbron</h4>
<div class="flex items-center">
<div class="text-amber-500 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">TrustPilot</span>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-4">"I had many conversations with many companies and found Ollie at BRAND_NAME to be the most helpful. He gave me information I needed to go and see the options of stone up close, to be sure I was picking the right one!"</p>
<div class="text-gray-500 text-sm">May 15, 2024</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-6 rounded-lg testimonial-card">
<div class="flex items-center mb-4">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/06/Annette-Bannister.png" alt="Annette Bannister" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Annette Bannister</h4>
<div class="flex items-center">
<div class="text-amber-500 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-gray-500 text-sm">TrustPilot</span>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-4">"BRAND_NAME came recommended from a friend, which is always a good start. We were on a tight schedule for the kitchen fitting and needed to get worktops sorted asap. Ollie was super responsive."</p>
<div class="text-gray-500 text-sm">June 9, 2024</div>
</div>
</div>
<!-- Slider Controls -->
<div class="flex justify-center space-x-4">
<button class="slider-control w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center hover:bg-gray-300">
<i class="fas fa-chevron-left"></i>
</button>
<button class="slider-control w-10 h-10 rounded-full bg-amber-600 text-white flex items-center justify-center hover:bg-amber-700">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Installation Guide -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Preparing for Installation</h2>
<p class="text-gray-600 mb-6">Setting up your kitchen for a new quartz surface extends beyond merely clearing off worktops. Make sure all pathways leading into your kitchen are clear; this ensures smooth entry for transporting large slabs of stone safely.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="text-amber-600 mt-1 mr-3">
<i class="fas fa-check-circle"></i>
</div>
<div>
<h3 class="font-bold text-gray-800 mb-1">Clear the Space</h3>
<p class="text-gray-600">Tactfully remove any existing worktops, and disconnect gas lines or plumbing if necessary—tasks best left to seasoned professionals.</p>
</div>
</div>
<div class="flex items-start">
<div class="text-amber-600 mt-1 mr-3">
<i class="fas fa-check-circle"></i>
</div>
<div>
<h3 class="font-bold text-gray-800 mb-1">Safety First</h3>
<p class="text-gray-600">During installation days, keep children and pets at bay to prevent any mishaps.</p>
</div>
</div>
<div class="flex items-start">
<div class="text-amber-600 mt-1 mr-3">
<i class="fas fa-check-circle"></i>
</div>
<div>
<h3 class="font-bold text-gray-800 mb-1">Schedule Carefully</h3>
<p class="text-gray-600">Selecting the perfect day for installing your BRAND_NAME countertop is critical. Choose a time when you're available at home to supervise each step and ensure perfection.</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/07/Scheduling-The-Installation-And-What-To-Expect%E2%80%8B.jpg" alt="Quartz Installation" class="w-full rounded-lg shadow-md">
</div>
</div>
</div>
</section>
<!-- Maintenance Guide -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Maintaining Your Worktop</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Keeping your new quartz surface looking great is easy with these simple maintenance tips.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-lg">
<div class="text-amber-600 mb-4 text-3xl">
<i class="fas fa-broom"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Daily Care</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Use a soft cloth or non-abrasive sponge with mild dish soap</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Avoid harsh chemicals that can damage the surface</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Wipe up spills immediately, especially acidic substances</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Use trivets under hot pans to prevent heat damage</span>
</li>
</ul>
</div>
<div class="bg-gray-50 p-6 rounded-lg">
<div class="text-amber-600 mb-4 text-3xl">
<i class="fas fa-calendar-alt"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Long-Term Care</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Minimize direct sunlight exposure to prevent fading</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>For tough stains, use glass cleaner cautiously</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Keep sharp objects off the surface to avoid scratches</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>No sealing required - quartz is non-porous</span>
</li>
</ul>
</div>
<div class="bg-gray-50 p-6 rounded-lg">
<div class="text-amber-600 mb-4 text-3xl">
<i class="fas fa-tools"></i>
</div>
<h3 class="font-bold text-xl mb-3 text-gray-800">Professional Care</h3>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>For major damage, contact professionals for repair</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Consider professional polishing for deep cleaning</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Annual inspection recommended for heavy-use areas</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-amber-600 mr-2 mt-1 text-sm"></i>
<span>Consult with our team for any specific care questions</span>
</li>
</ul>
</div>
</div>
<div class="mt-12 text-center">
<img src="https://BRAND_NAME.co.uk/wp-content/uploads/2024/07/Daily-Care.jpg" alt="Quartz Maintenance" class="rounded-lg shadow-md mx-auto max-w-full">
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-amber-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Kitchen?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Explore our stunning collection of quartz worktops and find the perfect match for your home.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-amber-600 px-8 py-3 rounded hover:bg-gray-100 transition font-medium">
View Collection
</button>
<button class="bg-transparent border-2 border-white px-8 py-3 rounded hover:bg-white hover:text-amber-600 transition font-medium">
Get a Free Quote
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-xl font-bold mb-4">BRAND_NAME</h3>
<p class="text-gray-400 mb-4">Specialists in high-quality quartz worktops for kitchens and bathrooms across the UK.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-pinterest"></i>
</a>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Products</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Gallery</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Quartz Worktops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Granite Worktops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Marble Worktops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Porcelain Worktops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Sintered Stone</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Contact Us</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-amber-600"></i>
<span>123 Stone Street, London, UK</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-3 text-amber-600"></i>
<span>020 1234 5678</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-3 text-amber-600"></i>
<span>info@BRAND_NAME.co.uk</span>
</li>
<li class="flex items-start">
<i class="fas fa-clock mt-1 mr-3 text-amber-600"></i>
<span>Mon-Fri: 9am-5pm</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2024 BRAND_NAME. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Simple testimonial slider functionality
document.addEventListener('DOMContentLoaded', function() {
const testimonials = document.querySelectorAll('.testimonial-card');
let currentIndex = 0;
function showTestimonial(index) {
testimonials.forEach((testimonial, i) => {
if (i >= index && i < index + 3) {
testimonial.style.display = 'block';
} else {
testimonial.style.display = 'none';
}
});
}
// Initialize - show first 3 testimonials
showTestimonial(currentIndex);
// Next button functionality
document.querySelector('.slider-control:last-child').addEventListener('click', function() {
if (currentIndex + 3 < testimonials.length) {
currentIndex += 3;
showTestimonial(currentIndex);
}
});
// Previous button functionality
document.querySelector('.slider-control:first-child').addEventListener('click', function() {
if (currentIndex - 3 >= 0) {
currentIndex -= 3;
showTestimonial(currentIndex);
}
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('button.md\\:hidden');
mobileMenuButton.addEventListener('click', function() {
// This would toggle a mobile menu - implementation would depend on your specific needs
alert('Mobile menu would open here in a full implementation');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=WizardImon/tpsc-clone" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>