This commit is contained in:
hackerESQ
2024-08-26 19:09:33 -05:00
parent 845091fea7
commit 7fcfc57d9b
2 changed files with 12 additions and 4 deletions
@@ -6,7 +6,7 @@
<meta name="csrf-token" content="{{ csrf_token() }}"> <meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="icon" href="/favicon.svg"> <link rel="icon" href="/favicon.svg">
<title>{{ config('app.name', 'Laravel') }}</title> <title>{{ config('app.name', 'Investbrain') }}</title>
<link rel="preconnect" href="https://fonts.bunny.net"> <link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
+10 -2
View File
@@ -1,8 +1,15 @@
@extends('layouts.main-layout', ['attributes' => null]) @extends('layouts.main-layout', ['attributes' => null])
@section('body')
<div class="flex flex-col min-h-[100dvh] bg-gradient-to-br from-[#03255B] to-[#011638] text-white"> <div class="flex flex-col min-h-[100dvh] bg-gradient-to-br from-[#03255B] to-[#011638] text-white">
<header class="px-4 lg:px-6 h-14 flex items-center w-20"> <header class="px-4 lg:px-6 h-14 flex justify-between items-center ">
<x-glyph-only-logo class="text-white" /> <div class="w-10">
<x-glyph-only-logo class="text-white" />
</div>
@auth
<a href="{{ route('dashboard') }}">Dashboard</a>
@endauth
</header> </header>
<main class="flex-1 flex flex-col items-center justify-center px-4 md:px-6 gap-8"> <main class="flex-1 flex flex-col items-center justify-center px-4 md:px-6 gap-8">
<div class="text-center space-y-4"> <div class="text-center space-y-4">
@@ -95,3 +102,4 @@
}; };
} }
</script> </script>
@endsection