diff --git a/resources/views/components/image.blade.php b/resources/views/components/image.blade.php index 737d186..17182cb 100644 --- a/resources/views/components/image.blade.php +++ b/resources/views/components/image.blade.php @@ -1,8 +1,16 @@ -@props(['src', 'alt', 'additionalClass' => '']) +@props(['src', 'alt', 'additionalClass' => '', 'caption' => null]) -{{ $alt }} +
+ {{ $alt }} + + @if ($caption) +

+ {{ $caption }} +

+ @endif +
diff --git a/resources/views/components/links/services-mega-menu.blade.php b/resources/views/components/links/services-mega-menu.blade.php index 606b581..5300a10 100644 --- a/resources/views/components/links/services-mega-menu.blade.php +++ b/resources/views/components/links/services-mega-menu.blade.php @@ -6,14 +6,9 @@ 'active' => request()->route()->getName() === 'new.services.framing.acrylic' ], [ - 'href' => route('services.framing.australian'), - 'name' => 'Australian Made Framing Kits', - 'active' => request()->route()->getName() === 'services.framing.australian' - ], - [ - 'href' => route('services.framing.canvases'), - 'name' => 'Canvases', - 'active' => request()->route()->getName() === 'services.framing.canvases' + 'href' => route('new.services.framing.canvas'), + 'name' => 'Canvas', + 'active' => request()->route()->getName() === 'new.services.framing.canvas' ], [ 'href' => route('services.framing.indigenous-art'), diff --git a/resources/views/pages/services/acrylic.blade.php b/resources/views/pages/services/acrylic.blade.php index f785417..cd9828d 100644 --- a/resources/views/pages/services/acrylic.blade.php +++ b/resources/views/pages/services/acrylic.blade.php @@ -7,7 +7,7 @@ -

+

Acrylic casing offers a stunning way to showcase your cherished items. At Framed Just For You, our acrylic cases are designed to accommodate a wide range of objects, from golf balls to football boots, and from jerseys to guitars! @@ -39,7 +39,7 @@ /> -

+

With our versatile acrylic cases, you have the flexibility to choose between wall mounting or displaying on a flat surface, depending on the nature of your item. Ready to elevate your displays? Visit our showroom today for personalized design consultations and a tailored quote.

diff --git a/resources/views/pages/services/canvas.blade.php b/resources/views/pages/services/canvas.blade.php new file mode 100644 index 0000000..9f9b446 --- /dev/null +++ b/resources/views/pages/services/canvas.blade.php @@ -0,0 +1,66 @@ + + + + + + Canvases + + + +

+ Have your canvases stretched on quality stretcher frames. All canvases are hand-stretched using stainless steel staples, using 100% Cotton, 12oz triple primed canvas, quality timber and stainless steel staples. We offer a full guarantee against warping and sagging. +

+ +

+ If you're considering having an artwork or photograph on canvas stretched, it's essential to understand what you're paying for before choosing a framer. + + We also stock ready-made canvases, perfect for your painting projects. If you require a specific size not in stock, we can arrange for a custom-stretched canvas using our high-quality materials. These canvases are ready to hang, allowing you to showcase your finished piece instantly in your space. +

+
+
+
+ + + + + How can I frame canvas? + + + +

+ We offer multiple different ways to frame canvas's each with a select taste and style. +

+ +
+ + + + + + +
+
+
+
+
+
diff --git a/routes/public.php b/routes/public.php index cf609cd..764d509 100644 --- a/routes/public.php +++ b/routes/public.php @@ -33,7 +33,7 @@ * Restorations */ Route::get('/acrylic', fn () => view('pages/services/acrylic'))->name('acrylic'); - + Route::get('/canvas', fn () => view('pages/services/canvas'))->name('canvas'); }); Route::prefix('new.other')->name('new.other.')->group(function () {