Files
SkinbaseNova/resources/views/profile/show.blade.php

22 lines
449 B
PHP

@php
$useUnifiedSeo = true;
$renderBladeSeo = true;
@endphp
@extends('layouts.nova')
@push('head')
@vite(['resources/js/profile.jsx'])
<meta name="csrf-token" content="{{ csrf_token() }}" />
<style>
/* Ensure profile tab bar does not hide behind the main navbar */
.profile-tabs-sticky {
top: var(--navbar-height, 4rem);
}
</style>
@endpush
@section('content')
@inertia
@endsection