add a lot of thing (too late to understand tbh)
This commit is contained in:
15
portfolio/pages/contact.js
Normal file
15
portfolio/pages/contact.js
Normal file
@@ -0,0 +1,15 @@
|
||||
export default function Contact() {
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-900 text-white flex flex-col items-center justify-center p-10">
|
||||
<h1 className="text-4xl font-bold fade-in">Me Contacter</h1>
|
||||
<p className="mt-4 text-lg fade-in">N'hésitez pas à me contacter pour toute collaboration !</p>
|
||||
<form className="mt-6 fade-in">
|
||||
<input type="text" placeholder="Votre nom" className="p-2 rounded-lg text-black" />
|
||||
<input type="email" placeholder="Votre email" className="p-2 rounded-lg text-black mt-2" />
|
||||
<textarea placeholder="Votre message" className="p-2 rounded-lg text-black mt-2"></textarea>
|
||||
<button type="submit" className="px-4 py-2 bg-blue-500 rounded-lg hover:bg-blue-600 mt-4">Envoyer</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user