mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-24 22:25:16 +02:00
add compte - modified ...
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<header class="flex mt-36 mx-24 mb-24">
|
||||
<header class="flex mt-36 mx-4 mb-24 sm:mx-24">
|
||||
<div class="mr-10">
|
||||
<h1 class="text-4xl font-bold mb-3">Hi! 👋🏻<br>I'm Arthur.</h1>
|
||||
<h2 class="text-2xl font-bold mb-3">Founder</h2>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<section id="about" class="pt-32 mx-24 mb-24">
|
||||
<section id="about" class="pt-32 mx-4 mb-24 sm:mx-24">
|
||||
<h2 class="text-2xl font-bold mb-10">About</h2>
|
||||
<p>Hi ! I'm Arthur, a passionate developer based in France. My journey in the world of development is an inspiring adventure. Every line of code I write is a step toward creating unique and engaging experiences. I am driven by the desire to bring ideas to life and shape them into innovative designs.</p>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<section id="contact" class="pt-32 mx-24 mb-24">
|
||||
<section id="contact" class="pt-32 mx-4 mb-24 sm:mx-24">
|
||||
<h2 class="text-2xl font-bold mb-10">Contact</h2>
|
||||
|
||||
@component('components/form/form', {
|
||||
@@ -10,14 +10,14 @@
|
||||
'name': 'nom',
|
||||
'type': 'text',
|
||||
'required': true,
|
||||
'placeholder': 'Votre nom',
|
||||
'placeholder': 'nom',
|
||||
})
|
||||
@!component('components/form/field', {
|
||||
'label': 'E-mail :',
|
||||
'name': 'email',
|
||||
'type': 'email',
|
||||
'required': true,
|
||||
'placeholder': 'prenom.nom@mail.com',
|
||||
'placeholder': 'exemple@mail.com',
|
||||
})
|
||||
@!component('components/form/field', {
|
||||
'label': 'Message :',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<section id="projects" class="pt-32 mx-24 mb-24">
|
||||
<section id="projects" class="pt-32 mx-4 mb-24 sm:mx-24">
|
||||
<h2 class="text-2xl font-bold mb-10">Projects</h2>
|
||||
|
||||
<div class="flex flex-wrap justify-center">
|
||||
|
||||
@@ -53,15 +53,14 @@
|
||||
|
||||
<!-- Dropdown menu -->
|
||||
<div x-show="profileMenuOpen" @click.away="profileMenuOpen = false" x-cloak class="absolute right-0 z-10 mt-2 w-48 origin-top-right rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1">
|
||||
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Your Profile</a>
|
||||
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Settings</a>
|
||||
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Sign out</a>
|
||||
<a href="{{ route('compte') }}" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Your Profile</a>
|
||||
<a href="{{ route('compte') }}#settings" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Settings</a>
|
||||
<a href="{{ route('logout') }}" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-200">Sign out</a>
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
{{ auth.user }}
|
||||
<a href="{{ route('login') }}">Login</a>
|
||||
<a href="{{ route('signup') }}">Signup</a>
|
||||
<a href="{{ route('login') }}" class="mr-2 text-gray-300">Login</a>
|
||||
<a href="{{ route('signup') }}" class="text-gray-300">Signup</a>
|
||||
@end
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user