@extends('layouts.app') @section('title', 'AutoParts Marketplace - Quality Auto Parts') @section('content') {{-- Hero Section --}}

Find the Right Part for Your Car

Thousands of quality auto parts from verified vendors

{{-- Car Filter Search --}}

Shop by Your Vehicle

{{-- Categories --}}

Shop by Category

{{-- Featured Products --}} @if($featuredProducts->count() > 0)

Featured Parts

View All →
@foreach($featuredProducts as $product) @include('components.product-card', ['product' => $product]) @endforeach
@endif {{-- New Arrivals --}}

New Arrivals

View All →
@foreach($newArrivals as $product) @include('components.product-card', ['product' => $product]) @endforeach
{{-- Top Brands --}} @if($brands->count() > 0)

Top Brands

@foreach($brands as $brand) {{ $brand->name }} @endforeach
@endif {{-- Top Vendors --}} @if($topVendors->count() > 0)

Top Vendors

@endif {{-- Why Choose Us --}}

Why Choose AutoParts?

🔧

Quality Parts

All vendors are verified for quality and authenticity

🚚

Fast Shipping

Free shipping on orders over $99

💰

Best Prices

Competitive pricing from multiple vendors

🛡️

Secure Payment

Safe and secure checkout with Stripe

@endsection @push('scripts') @endpush