25 lines
843 B
PHP
25 lines
843 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
|
|
@include('partials.head')
|
|
|
|
<body class="font-sans antialiased">
|
|
<div class="flex flex-col min-h-screen bg-gray-100 dark:bg-neutral-900">
|
|
@include('layouts.navigation')
|
|
<!-- Page Content -->
|
|
<main>
|
|
@include('user.partials.background')
|
|
<div class="relative max-w-[120rem] mx-auto sm:px-6 lg:px-8 space-y-6 pt-20 mt-[65px] flex flex-row justify-center">
|
|
<div class="flex flex-col">
|
|
@include('user.partials.profile')
|
|
<div class="pt-8">
|
|
@include('user.partials.info')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
@include('layouts.footer')
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|