@extends('layouts.app') @section('title', ($settings['site_name'] ?? 'H&H Creations') . ' — Shop') @section('content')

{{ $settings['hero_title'] ?? 'Handmade Creations, Made With Love' }}

{{ $settings['hero_subtitle'] ?? 'Unique, elegant pieces crafted for you.' }}

Shop the Collection

Our Products

@if($products->isEmpty())

No products available yet. Please check back soon.

@else
@foreach($products as $product)
{{ $product->name }}
{{ $product->name }}

Rs {{ number_format($product->price, 2) }}

@csrf
@endforeach
@endif

{{ $settings['about_title'] ?? 'About Us' }}

{{ $settings['about_text'] ?? '' }}

Get In Touch

Email

{{ $settings['contact_email'] ?? '-' }}

Phone

{{ $settings['contact_phone'] ?? '-' }}

Location

{{ $settings['contact_address'] ?? '-' }}

@endsection