We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705f076 commit 6754ee5Copy full SHA for 6754ee5
site/blueprints/site.yml
@@ -67,7 +67,7 @@ tabs:
67
templates:
68
- contact
69
- about
70
-
+
71
settings:
72
label: Configuration
73
icon: settings
site/templates/components/navigation/header.blade.php
@@ -2,7 +2,14 @@
2
<div class="container mx-auto flex items-center justify-between">
3
<div class="flex items-center">
4
<a href="/" class="text-2xl font-bold text-black">
5
- Andrea
+ @php
6
+ $aboutPage = page('about');
7
+ $image = $aboutPage?->image();
8
+ @endphp
9
10
+ @if($image)
11
+ <img src="{{ $image->url() }}" alt="Profile Picture" class="w-12 h-12 rounded-full object-cover">
12
+ @endif
13
</a>
14
</div>
15
<div class="flex items-center space-x-4">
0 commit comments