nextgensolutions8's picture
DEEPSITE AI BUILDER PROMPT: Fully Branded Landing Page for Chop Shop Cycle Ltd. Business Name: Chop Shop Cycle Ltd. Website: www.ChopShopCycle.com Email: [email protected] Phone: 778-859-0000 Location: 12820 Trites Rd, Richmond, BC V7E 3R8, Canada Main Logo Image URL (use for top center display): https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png ⸻ OBJECTIVE: Create a powerful, fully branded landing page for Chop Shop Cycle Ltd. focused on high-performance salvage parts and exotic cars. Make the logo a central visual identity — placed prominently in the upper middle of the hero section, separate from the top navigation bar, where it is also included in a smaller format. Use a VW vehicle (Jetta, Golf R, or Scirocco) image or similar exotic/high-performance car as the hero background image, with a gritty, real-world aesthetic (e.g., on a lot, in a garage, or styled industrial). ⸻ TOP NAVIGATION BAR: • Sticky navigation bar with a smaller version of the Chop Shop logo (use same URL) • Menu items: HOME | ABOUT | INVENTORY ▼ | CARS FOR SALE ▼ | SERVICES | REVIEWS | CONTACT • Dropdowns for: • INVENTORY: Engine, Transmission, Electrical, Interior, Exterior • CARS FOR SALE: Tesla, Audi, BMW, Porsche, Ducati, Other Bikes ⸻ HERO SECTION: • Full-width, high-quality VW or performance car background image • Superimpose the main Chop Shop logo in the upper center above headline text (opacity: 85–100%, no fade) • Bold Title: “RARE. PERFORMANCE. SALVAGE.” • Subtitle: “Premium OEM parts & exotic vehicles — professionally sourced, expertly tested.” • CTA Buttons: • [Browse Parts] • [See Cars for Sale] • [Talk to ALEX] ⸻ ABOUT SECTION: • Title: “Built for Builders.” • Paragraph: “Chop Shop Cycle Ltd. specializes in sourcing rare OEM parts and salvaging exotic cars, motorcycles, and performance vehicles. From hard-to-find powertrains to body kits, our inventory is tested, tagged, and trusted by shops and enthusiasts across Canada and beyond.” ⸻ INVENTORY SECTION: • Interactive, tabbed display: [Engines], [Transmissions], [Body Parts], [Wheels & Tires], [Electrical] • Use cards for each part with: • Image • Title (e.g., “2021 Duramax L5P Diesel Engine”) • Mileage, Condition, Stock Status • Price • CTA: [Request Quote] ⸻ CARS FOR SALE: Showcase 4–6 vehicle cards, including: • 2021 Tesla Model 3 Performance – 19,800 km – Excellent – $42,000 • 2020 Tesla Model Y AWD – 26,100 km – Minor Rear Damage – $38,500 • 2018 Audi R8 V10 Plus – 12,500 km – Front-end Damage – $58,900 • 2021 Ducati Panigale V4R – 3,200 km – Fairings Damaged – $12,900 • Include images, condition summary, and [Inquire] button ⸻ SERVICES SECTION: • Icons + Labels: • Rare Part Sourcing • Engine Verification & Testing • On-Site Pickup or Shipping • Inventory-to-Order Assistance ⸻ ALEX CHATBOT: • Add an always-on chatbot bubble in the bottom right corner • Demo dialogue: • User: “Do you have any 2021 Duramax engines?” • ALEX: “Yes! We have 3 options in stock, tested and ready. Want me to forward the details to our front counter?” • User: “Yes.” • ALEX: “Got it. Charles from the front counter will reach out shortly.” ⸻ REVIEWS SECTION: • 3 real-world style testimonials with star ratings, user names, and vehicle make • Display in card or slider format ⸻ CONTACT SECTION: • Include: Address, Map Embed, Email, Phone • Simple inquiry form: Name, Email, Phone, Message • CTA Button: [Send Inquiry] ⸻ FOOTER: • Smaller Chop Shop logo • Copyright: © 2025 Chop Shop Cycle Ltd. • Social Media Icons (if available) ⸻ DESIGN STYLE: • Font: Oswald (headers), Montserrat (body) • Colors: Matte black, deep red accents, white space for contrast • Mobile-first, fully responsive layout • Hero logo should command attention — not faded out • Ensure all image URLs used are reliable and load correctly ⸻ Let this landing page set the tone for a premium salvage brand with real-world grit and style. Make it convert, make it memorable, and make sure it screams CHOP SHOP CYCLE the moment it loads. - Initial Deployment
82d9983 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chop Shop Cycle Ltd. | Rare Performance Salvage</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
h1, h2, h3, h4, .nav-item, .btn {
font-family: 'Oswald', sans-serif;
}
.hero-section {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
min-height: 600px;
}
.part-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
#chatbot {
transition: all 0.3s ease;
}
#chatbot-container {
transform: translateY(100%);
transition: all 0.3s ease;
}
#chatbot.active #chatbot-container {
transform: translateY(0);
}
.inventory-tab.active {
background-color: #b91c1c;
color: white;
}
.testimonial-carousel {
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
}
.testimonial-slide {
scroll-snap-align: start;
flex: 0 0 100%;
}
@media (min-width: 768px) {
.testimonial-slide {
flex: 0 0 50%;
}
}
@media (min-width: 1024px) {
.testimonial-slide {
flex: 0 0 33.33%;
}
}
</style>
</head>
<body class="bg-gray-100">
<!-- Navigation Bar -->
<nav class="fixed w-full bg-black text-white z-50 shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-12">
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="nav-item hover:text-red-600">HOME</a>
<a href="#about" class="nav-item hover:text-red-600">ABOUT</a>
<div class="relative group">
<button class="nav-item hover:text-red-600 flex items-center">
INVENTORY <i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="absolute hidden group-hover:block bg-black w-48 pt-2">
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Engine</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Transmission</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Electrical</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Interior</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Exterior</a>
</div>
</div>
<div class="relative group">
<button class="nav-item hover:text-red-600 flex items-center">
CARS FOR SALE <i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="absolute hidden group-hover:block bg-black w-48 pt-2">
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Tesla</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Audi</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">BMW</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Porsche</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Ducati</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Other Bikes</a>
</div>
</div>
<a href="#services" class="nav-item hover:text-red-600">SERVICES</a>
<a href="#reviews" class="nav-item hover:text-red-600">REVIEWS</a>
<a href="#contact" class="nav-item hover:text-red-600">CONTACT</a>
</div>
<button class="md:hidden focus:outline-none" id="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-black w-full pb-4" id="mobile-menu">
<a href="#" class="block px-4 py-2 hover:bg-gray-800">HOME</a>
<a href="#about" class="block px-4 py-2 hover:bg-gray-800">ABOUT</a>
<div class="px-4 py-2">
<button class="w-full flex justify-between items-center hover:bg-gray-800 py-1 px-2" id="inventory-toggle">
INVENTORY <i class="fas fa-chevron-down"></i>
</button>
<div class="hidden pl-4 mt-1" id="inventory-dropdown">
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Engine</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Transmission</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Electrical</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Interior</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Exterior</a>
</div>
</div>
<div class="px-4 py-2">
<button class="w-full flex justify-between items-center hover:bg-gray-800 py-1 px-2" id="cars-toggle">
CARS FOR SALE <i class="fas fa-chevron-down"></i>
</button>
<div class="hidden pl-4 mt-1" id="cars-dropdown">
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Tesla</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Audi</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">BMW</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Porsche</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Ducati</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Other Bikes</a>
</div>
</div>
<a href="#services" class="block px-4 py-2 hover:bg-gray-800">SERVICES</a>
<a href="#reviews" class="block px-4 py-2 hover:bg-gray-800">REVIEWS</a>
<a href="#contact" class="block px-4 py-2 hover:bg-gray-800">CONTACT</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section flex items-center justify-center text-center text-white pt-20">
<div class="container mx-auto px-4">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="mx-auto w-3/4 md:w-1/2 lg:w-1/3 mb-8">
<h1 class="text-4xl md:text-6xl font-bold mb-4">RARE. PERFORMANCE. SALVAGE.</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Premium OEM parts & exotic vehicles — professionally sourced, expertly tested.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#inventory" class="btn bg-red-600 hover:bg-red-700 px-6 py-3 rounded font-bold uppercase tracking-wide">Browse Parts</a>
<a href="#cars" class="btn bg-transparent hover:bg-gray-800 border-2 border-white px-6 py-3 rounded font-bold uppercase tracking-wide">See Cars for Sale</a>
<button id="chatbot-button" class="btn bg-black hover:bg-gray-800 px-6 py-3 rounded font-bold uppercase tracking-wide">Talk to ALEX</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Built for Builders.</h2>
<div class="max-w-4xl mx-auto text-center">
<p class="text-lg md:text-xl leading-relaxed">
Chop Shop Cycle Ltd. specializes in sourcing rare OEM parts and salvaging exotic cars, motorcycles, and performance vehicles.
From hard-to-find powertrains to body kits, our inventory is tested, tagged, and trusted by shops and enthusiasts across Canada and beyond.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-12">
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-search text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Expert Sourcing</h3>
<p>Our network finds parts others can't, from rare Euro imports to discontinued American muscle components.</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-check-circle text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Rigorous Testing</h3>
<p>Every part undergoes our 12-point inspection process before being listed in our inventory.</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-truck text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Global Shipping</h3>
<p>We ship worldwide with insured logistics partners specializing in automotive components.</p>
</div>
</div>
</div>
</section>
<!-- Inventory Section -->
<section id="inventory" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Parts Inventory</h2>
<div class="flex overflow-x-auto mb-8 scrollbar-hide">
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Engines</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Transmissions</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Body Parts</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Wheels & Tires</button>
<button class="inventory-tab px-6 py-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Electrical</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="inventory-container">
<!-- Engines tab content -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Duramax L5P Diesel Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2021 Duramax L5P Diesel Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 42,000 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Tested & Verified</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">Low Hours</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$6,899</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1596755094514-f87e34085b2c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2048&q=80" alt="BMW B58 Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">BMW B58 3.0L Turbo Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 18,500 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Complete</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">No Damage</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$4,599</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Audi 2.5TFSI Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">Audi 2.5TFSI 5-Cylinder Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 35,200 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Tested</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">Warranty Available</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$5,299</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#" class="btn bg-black hover:bg-gray-800 text-white px-8 py-3 rounded font-bold uppercase tracking-wide inline-block">View Full Inventory</a>
</div>
</div>
</section>
<!-- Cars for Sale Section -->
<section id="cars" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Featured Vehicles</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Tesla Model 3 -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1517649763962-0c623066013b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Tesla Model 3" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2021 Tesla Model 3 Performance</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">19,800 km</span>
<span class="font-bold text-green-600">Available</span>
</div>
<p class="mb-3">Excellent condition. Fully loaded with FSD capability. Clean title.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$42,000</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
<!-- Tesla Model Y -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Tesla Model Y" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2020 Tesla Model Y AWD</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">26,100 km</span>
<span class="font-bold text-yellow-600">Salvage Title</span>
</div>
<p class="mb-3">Minor rear damage. Battery/mechanical systems fully functional.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$38,500</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
<!-- Audi R8 -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1619682817481-e994891cd1f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Audi R8" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2018 Audi R8 V10 Plus</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">12,500 km</span>
<span class="font-bold text-yellow-600">Rebuildable</span>
</div>
<p class="mb-3">Front-end damage. Engine/drivetrain intact. Rare spec with carbon ceramics.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$58,900</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#" class="btn bg-black hover:bg-gray-800 text-white px-8 py-3 rounded font-bold uppercase tracking-wide inline-block">View All Vehicles</a>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Our Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-binoculars text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Rare Part Sourcing</h3>
<p>We'll hunt down parts others can't find, leveraging our network of salvage yards and dismantlers worldwide.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-check-double text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Engine Verification</h3>
<p>Comprehensive compression tests, leak-down analysis, and borescope inspection for critical components.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-truck-fast text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Shipping & Pickup</h3>
<p>On-site pickup in Richmond or arranged shipping with our specialized automotive transport partners.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-clipboard-list text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Inventory Assistance</h3>
<p>Need something specific? We'll search our network and notify you when items matching your criteria arrive.</p>
</div>
</div>
</div>
</section>
<!-- Reviews Section -->
<section id="reviews" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">What Our Customers Say</h2>
<div class="testimonial-carousel flex overflow-x-auto gap-6 pb-6 scrollbar-hide">
<!-- Review 1 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<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>
</div>
<p class="mb-4 italic">"Found the impossible-to-get M3 CS steering rack I needed for my track build. Arrived quicker than expected and in perfect condition."</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">Mike T.</p>
<p class="text-sm text-gray-600">2019 BMW M2 Competition</p>
</div>
</div>
</div>
</div>
<!-- Review 2 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<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>
</div>
<p class="mb-4 italic">"Saved my RS5 rebuild after the dealer quoted $22k for a new transmission. Their used unit had lower miles than my original!"</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">Sarah K.</p>
<p class="text-sm text-gray-600">2018 Audi RS5</p>
</div>
</div>
</div>
</div>
<!-- Review 3 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<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-half-alt"></i>
</div>
</div>
<p class="mb-4 italic">"Honest assessment of a wrecked GT3's condition helped me decide it was the perfect donor for my kit car project."</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">James R.</p>
<p class="text-sm text-gray-600">2016 Porsche 911 GT3</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Contact Us</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<div class="mb-8">
<h3 class="text-xl font-bold mb-4">Location & Hours</h3>
<div class="space-y-2">
<p><i class="fas fa-map-marker-alt text-red-600 mr-2"></i> 12820 Trites Rd, Richmond, BC V7E 3R8, Canada</p>
<p><i class="fas fa-clock text-red-600 mr-2"></i> Monday - Friday: 8:30AM - 5:30PM</p>
<p><i class="fas fa-clock text-red-600 mr-2"></i> Saturday: 9:00AM - 3:00PM</p>
<p><i class="fas fa-phone-alt text-red-600 mr-2"></i> 778-859-0000</p>
<p><i class="fas fa-envelope text-red-600 mr-2"></i> [email protected]</p>
</div>
</div>
<div class="h-64 w-full bg-gray-200 rounded-lg overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2609.0282469525835!2d-123.10475612341022!3d49.14918807517772!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5485d9d358d76255%3A0x8ee1bdf5b6b71b94!2s12820%20Trites%20Rd%2C%20Richmond%2C%20BC%20V7E%203R8%2C%20Canada!5e0!3m2!1sen!2sus!4v1689012433699!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
<div>
<form class="space-y-4">
<div>
<label for="name" class="block font-medium mb-1">Name</label>
<input type="text" id="name" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="email" class="block font-medium mb-1">Email</label>
<input type="email" id="email" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="phone" class="block font-medium mb-1">Phone</label>
<input type="tel" id="phone" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="message" class="block font-medium mb-1">Message</label>
<textarea id="message" rows="5" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600"></textarea>
</div>
<button type="submit" class="btn bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded font-bold uppercase tracking-wide w-full">Send Inquiry</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-16 mb-4">
<p class="text-gray-400">Premium salvage parts and exotic vehicles for enthusiasts and professionals.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#inventory" class="text-gray-400 hover:text-white">Parts Inventory</a></li>
<li><a href="#cars" class="text-gray-400 hover:text-white">Cars for Sale</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-white">Part Sourcing</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Vehicle Testing</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Shipping</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Inventory Assistance</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect With Us</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-gray-400">Subscribe to our newsletter for exclusive deals</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="p-2 rounded-l text-black w-full">
<button class="bg-red-600 hover:bg-red-700 px-4 rounded-r"><i class="fas fa-arrow-right"></i></button>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-400">
<p>© 2025 Chop Shop Cycle Ltd. All rights reserved.</p>
</div>
</div>
</footer>
<!-- ALEX Chatbot -->
<div id="chatbot" class="fixed bottom-6 right-6 z-50">
<div id="chatbot-container" class="hidden md:block bg-white rounded-t-lg shadow-xl w-80 h-96 flex flex-col">
<div class="bg-red-600 text-white p-3 rounded-t-lg flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-robot mr-2"></i>
<span>ALEX - Parts Assistant</span>
</div>
<button id="close-chatbot"><i class="fas fa-times"></i></button>
</div>
<div class="flex-1 p-4 overflow-y-auto bg-gray-50" id="chat-messages">
<div class="chat-message incoming mb-4">
<div class="bg-gray-200 rounded-lg p-3 max-w-xs">
<p>Hi! I'm ALEX, your parts assistant. How can I help you today? Try asking about specific parts or vehicles.</p>
</div>
</div>
</div>
<div class="p-3 border-t">
<div class="flex">
<input type="text" id="chat-input" placeholder="Type your message..." class="flex-1 p-2 border rounded-l focus:outline-none">
<button id="send-chat" class="bg-red-600 hover:bg-red-700 text-white px-4 rounded-r"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
<button id="chatbot-button" class="bg-red-600 hover:bg-red-700 text-white rounded-full w-14 h-14 flex items-center justify-center shadow-lg">
<i class="fas fa-robot text-2xl"></i>
</button>
</div>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Mobile dropdown toggles
document.getElementById('inventory-toggle').addEventListener('click', function() {
document.getElementById('inventory-dropdown').classList.toggle('hidden');
});
document.getElementById('cars-toggle').addEventListener('click', function() {
document.getElementById('cars-dropdown').classList.toggle('hidden');
});
// Inventory tabs
const tabs = document.querySelectorAll('.inventory-tab');
tabs[0].classList.add('active', 'bg-red-600', 'text-white');
tabs.forEach(tab => {
tab.addEventListener('click', function() {
tabs.forEach(t => t.classList.remove('active', 'bg-red-600', 'text-white'));
this.classList.add('active', 'bg-red-600', 'text-white');
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Chatbot functionality
const chatbot = document.getElementById('chatbot');
const chatbotContainer = document.getElementById('chatbot-container');
const chatMessages = document.getElementById('chat-messages');
const chatInput = document.getElementById('chat-input');
const sendChat = document.getElementById('send-chat');
const chatbotButtons = document.querySelectorAll('#chatbot-button');
const closeChatbot = document.getElementById('close-chatbot');
chatbotButtons.forEach(button => {
button.addEventListener('click', function() {
chatbot.classList.toggle('active');
chatMessages.innerHTML = `
<div class="chat-message incoming mb-4">
<div class="bg-gray-200 rounded-lg p-3 max-w-xs">
<p>Hi! I'm ALEX, your parts assistant. How can I help you today? Try asking about specific parts or vehicles.</p>
</div>
</div>
`;
if (chatbot.classList.contains('active')) {
chatbotContainer.classList.remove('hidden');
} else {
chatbotContainer.classList.add('hidden');
}
});
});
closeChatbot.addEventListener('click', function() {
chatbot.classList.remove('active');
chatbotContainer.classList.add('hidden');
});
function addMessage(message, isOutgoing) {
const messageDiv = document.createElement('div');
messageDiv.className = `chat-message ${isOutgoing ? 'outgoing' : 'incoming'} mb-4`;
const bubble = document.createElement('div');
bubble.className = isOutgoing ?
'bg-red-600 text-white rounded-lg p-3 max-w-xs ml-auto' :
'bg-gray-200 rounded-lg p-3 max-w-xs';
bubble.innerHTML = `<p>${message}</p>`;
messageDiv.appendChild(bubble);
chatMessages.appendChild(messageDiv);
chatMessages.scrollTop = chatMessages.scrollHeight;
}
sendChat.addEventListener('click', function() {
sendMessage();
});
chatInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
sendMessage();
}
});
function sendMessage() {
const message = chatInput.value.trim();
if (message) {
addMessage(message, true);
chatInput.value = '';
// Simulate response
setTimeout(() => {
if (message.toLowerCase().includes('duramax')) {
addMessage("Yes! We have 3 options in stock, tested and ready. Want me to forward the details to our front counter?", false);
} else {
addMessage("I can help with that. Would you like me to check our current inventory for that specific part or vehicle?", false);
}
}, 1000);
}
}
// Testimonial carousel navigation (simplified)
let currentTestimonialIndex = 0;
const testimonials = document.querySelectorAll('.testimonial-slide');
function showTestimonial(index) {
const carousel = document.querySelector('.testimonial-carousel');
carousel.scrollTo({
left: testimonials[index].offsetLeft,
behavior: 'smooth'
});
}
</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=nextgensolutions8/chopshopcycle-sample-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>