Skip to content

Commit f747ffe

Browse files
Visual edit in Lovable
1 parent a2e6b33 commit f747ffe

File tree

1 file changed

+8
-29
lines changed

1 file changed

+8
-29
lines changed

src/pages/Contact.tsx

Lines changed: 8 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
1-
21
import React from 'react';
3-
42
import { Button } from '@/components/ui/button';
53
import { Send, Mail, MessageSquare, X, Facebook, Instagram, Disc, Github, Linkedin, BookOpen } from 'lucide-react';
6-
74
const Contact: React.FC = () => {
8-
return (
9-
<div className="relative flex flex-col flex-1">
5+
return <div className="relative flex flex-col flex-1">
106

117
<main className="relative z-10 flex-grow container mx-auto px-4 pt-4 pb-16">
128
<div className="max-w-6xl mx-auto">
13-
<h1 className="text-4xl md:text-5xl font-bold text-alien-gold mb-8 font-nasalization text-center">Contact Us</h1>
9+
<h1 className="text-4xl md:text-5xl text-alien-gold mb-8 font-nasalization text-center py-[23px] font-extrabold">Contact Us</h1>
1410

1511
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
1612
{/* Contact Methods - Takes 2/3 of the space on large screens */}
1713
<div className="lg:col-span-2 space-y-6">
18-
<p className="text-xl text-gray-300 font-[Exo] mb-6">
14+
<p className="text-xl font-[Exo] mb-6 text-alien-green font-bold text-left">
1915
Have questions or want to join the AlienFlowSpace DAO? Reach out through any of these cosmic channels:
2016
</p>
2117

@@ -128,32 +124,17 @@ const Contact: React.FC = () => {
128124
<form className="space-y-3">
129125
<div>
130126
<label className="block text-sm font-medium text-gray-400 mb-1 font-[Exo]" htmlFor="name">Name</label>
131-
<input
132-
type="text"
133-
id="name"
134-
className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm"
135-
placeholder="Your name"
136-
/>
127+
<input type="text" id="name" className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm" placeholder="Your name" />
137128
</div>
138129

139130
<div>
140131
<label className="block text-sm font-medium text-gray-400 mb-1 font-[Exo]" htmlFor="email">Email</label>
141-
<input
142-
type="email"
143-
id="email"
144-
className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm"
145-
placeholder="[email protected]"
146-
/>
132+
<input type="email" id="email" className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm" placeholder="[email protected]" />
147133
</div>
148134

149135
<div>
150136
<label className="block text-sm font-medium text-gray-400 mb-1 font-[Exo]" htmlFor="message">Message</label>
151-
<textarea
152-
id="message"
153-
rows={3}
154-
className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm resize-none"
155-
placeholder="Your message"
156-
></textarea>
137+
<textarea id="message" rows={3} className="w-full px-3 py-2 bg-alien-space-light/50 rounded-md border border-gray-600 text-gray-200 focus:border-alien-gold focus:outline-none font-[Exo] text-sm resize-none" placeholder="Your message"></textarea>
157138
</div>
158139

159140
<Button className="w-full bg-alien-green hover:bg-alien-green-light text-alien-space-dark font-[Exo] mt-4">
@@ -164,8 +145,6 @@ const Contact: React.FC = () => {
164145
</div>
165146
</div>
166147
</main>
167-
</div>
168-
);
148+
</div>;
169149
};
170-
171-
export default Contact;
150+
export default Contact;

0 commit comments

Comments
 (0)