Spaces:
Running
Running
File size: 5,485 Bytes
21a686e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
"use client";
import Link from "next/link";
import {
IconBrandGithub,
IconBrandLinkedin,
IconBrandX,
} from "@tabler/icons-react";
export function SimpleCenteredContactForm() {
const handleSubmit = (
e: React.FormEvent<HTMLFormElement> | React.MouseEvent<HTMLButtonElement>
) => {
e.preventDefault();
const target = e.target as HTMLFormElement;
console.log(target);
};
const socials = [
{
title: "twitter",
href: "https://twitter.com/mannupaaji",
icon: (
<IconBrandX className="h-5 w-5 text-neutral-600 dark:text-neutral-400 hover:text-black" />
),
},
{
title: "github",
href: "https://github.com/manuarora700",
icon: (
<IconBrandGithub className="h-5 w-5 text-neutral-600 dark:text-neutral-400 hover:text-black" />
),
},
{
title: "linkedin",
href: "https://linkedin.com/manuarora28",
icon: (
<IconBrandLinkedin className="h-5 w-5 text-neutral-600 dark:text-neutral-400 hover:text-black" />
),
},
];
return (
<div className="bg-gray-50 dark:bg-neutral-900 w-full flex items-center justify-center">
<div className="flex relative px-4 z-20 items-center w-full justify-center py-10">
<div className="mx-auto w-full max-w-lg bg-white dark:bg-neutral-950 px-4 md:px-10 py-8 shadow-input rounded-3xl">
<div>
<h1 className="mt-8 text-2xl font-bold leading-9 tracking-tight text-black dark:text-white">
Contact Us
</h1>
<p className="mt-4 text-neutral-600 dark:text-neutral-400 text-sm max-w-sm">
Please reach out to us and we will get back to you at the speed of
light.
</p>
</div>
<div className="py-10">
<div>
<form onSubmit={handleSubmit} className="space-y-4">
<label
htmlFor="name"
className="block text-sm font-medium leading-6 text-neutral-700 dark:text-neutral-400"
>
Full Name
</label>
<div className="mt-2">
<input
id="name"
type="name"
placeholder="Manu Arora"
className="block w-full bg-white dark:bg-neutral-900 px-4 rounded-md border-0 py-1.5 shadow-input text-black placeholder:text-gray-400 focus:ring-2 focus:ring-neutral-400 focus:outline-none sm:text-sm sm:leading-6 dark:text-white"
/>
</div>
<label
htmlFor="email"
className="block text-sm font-medium leading-6 text-neutral-700 dark:text-neutral-400"
>
Email address
</label>
<div className="mt-2">
<input
id="email"
type="email"
placeholder="hello@johndoe.com"
className="block w-full bg-white dark:bg-neutral-900 px-4 rounded-md border-0 py-1.5 shadow-input text-black placeholder:text-gray-400 focus:ring-2 focus:ring-neutral-400 focus:outline-none sm:text-sm sm:leading-6 dark:text-white"
/>
</div>
<label
htmlFor="company"
className="block text-sm font-medium leading-6 text-neutral-700 dark:text-neutral-400"
>
Company
</label>
<div className="mt-2">
<input
id="company"
type="company"
placeholder="Aceternity Labs, LLC"
className="block w-full bg-white dark:bg-neutral-900 px-4 rounded-md border-0 py-1.5 shadow-input text-black placeholder:text-gray-400 focus:ring-2 focus:ring-neutral-400 focus:outline-none sm:text-sm sm:leading-6 dark:text-white"
/>
</div>
<label
htmlFor="message"
className="block text-sm font-medium leading-6 text-neutral-700 dark:text-neutral-400"
>
message
</label>
<div className="mt-2">
<textarea
rows={5}
id="message"
placeholder="Enter your message here"
className="block w-full bg-white dark:bg-neutral-900 px-4 rounded-md border-0 py-1.5 shadow-input text-black placeholder:text-gray-400 focus:ring-2 focus:ring-neutral-400 focus:outline-none sm:text-sm sm:leading-6 dark:text-white"
/>
</div>
<div>
<button className="bg-black relative z-10 hover:bg-black/90 text-white text-sm md:text-sm transition font-medium duration-200 rounded-full px-4 py-2 flex items-center justify-center w-full dark:text-black dark:bg-white dark:hover:bg-neutral-100 dark:hover:shadow-xl">
Submit
</button>
</div>
</form>
</div>
</div>
<div className="flex items-center justify-center space-x-4 py-4">
{socials.map((social) => (
<Link href={social.href} key={social.title}>
{social.icon}
</Link>
))}
</div>
</div>
</div>
</div>
);
}
|