diff --git a/app/Support/Traits/GoogleApi.php b/app/Support/Traits/GoogleApi.php index f318b4f..2d780df 100644 --- a/app/Support/Traits/GoogleApi.php +++ b/app/Support/Traits/GoogleApi.php @@ -11,11 +11,11 @@ trait GoogleApi public function getRecentReviews(): Collection { if (app()->environment('local')) { - return collect($this->getLocalReviews()['reviews'])->sortByDesc('rating')->take(3)->values(); + return collect($this->getLocalReviews()['reviews'])->sortByDesc('rating')->take(5)->values(); } return cache()->remember(CacheKeys::googleReviews(), (24 * 60) * 7, - fn () => collect($this->retrieveReviews())->sortByDesc('rating')->take(3)->values()); + fn () => collect($this->retrieveReviews())->sortByDesc('rating')->take(5)->values()); } protected function getLocalReviews(): array diff --git a/config/framed.php b/config/framed.php index d0de6ea..4d37181 100644 --- a/config/framed.php +++ b/config/framed.php @@ -32,7 +32,7 @@ | */ - 'copyright' => '© 1997-2025 All rights reserved.', + 'copyright' => '© 1997-2026 All rights reserved.', /* |-------------------------------------------------------------------------- diff --git a/public/images/framing/arrowheads.webp b/public/images/framing/arrowheads.webp new file mode 100644 index 0000000..ebc5aae Binary files /dev/null and b/public/images/framing/arrowheads.webp differ diff --git a/public/images/framing/cat-painting.webp b/public/images/framing/cat-painting.webp new file mode 100644 index 0000000..4d43714 Binary files /dev/null and b/public/images/framing/cat-painting.webp differ diff --git a/public/images/framing/emu-art.webp b/public/images/framing/emu-art.webp new file mode 100644 index 0000000..e454370 Binary files /dev/null and b/public/images/framing/emu-art.webp differ diff --git a/public/images/framing/shadow-box.webp b/public/images/framing/shadow-box.webp new file mode 100644 index 0000000..8b66238 Binary files /dev/null and b/public/images/framing/shadow-box.webp differ diff --git a/public/images/logo-white.png b/public/images/logo-white.png new file mode 100644 index 0000000..5d9d6bb Binary files /dev/null and b/public/images/logo-white.png differ diff --git a/public/images/logo.png b/public/images/logo.png index 3b70b17..2159d4c 100644 Binary files a/public/images/logo.png and b/public/images/logo.png differ diff --git a/resources/css/app.css b/resources/css/app.css index b5c61c9..a4fc0fe 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -1,3 +1,7 @@ @tailwind base; @tailwind components; @tailwind utilities; + +html { + scroll-behavior: smooth; +} diff --git a/resources/views/components/layouts/app.blade.php b/resources/views/components/layouts/app.blade.php index dacded6..3d4052d 100644 --- a/resources/views/components/layouts/app.blade.php +++ b/resources/views/components/layouts/app.blade.php @@ -45,7 +45,7 @@ function gtag(){dataLayer.push(arguments);}
-