@extends('frontend.layouts.app') @section('content')

发现优质 AI 工具与产品

精选高质量 AI 工具与产品,覆盖写作、设计、编程与办公等场景。

@include('frontend.partials.ad-slot', ['slotKey' => 'home', 'title' => '推广位'])

热门推荐

@forelse($featuredProducts as $product) @include('frontend.partials.product-card', ['product' => $product]) @empty
暂无热门推荐
@endforelse

新加产品

@forelse($newProducts as $product) @include('frontend.partials.product-card', ['product' => $product]) @empty
暂无新加产品
@endforelse

全部分类

@foreach($categories as $category)

{{ $category->name }}

更多
@foreach($category->products as $product) @include('frontend.partials.product-card', ['product' => $product]) @endforeach
@endforeach
@endsection