File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const contacts = [
20
20
21
21
const ContactDetails = ( ) => {
22
22
return (
23
- < div className = "w-full sm :w-1/2" >
23
+ < div className = "w-full lg :w-1/2" >
24
24
< div className = "text-left max-w-xl px-6" >
25
25
< h2 className = "text-2xl text-primary-dark dark:text-primary-light font-semibold mt-12 mb-8" >
26
26
Contact details
Original file line number Diff line number Diff line change 1
1
const ContactForm = ( ) => {
2
2
return (
3
- < div className = "w-full sm :w-1/2" >
3
+ < div className = "w-full lg :w-1/2" >
4
4
< div className = "leading-loose" >
5
5
< form
6
6
onSubmit = { ( e ) => {
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ const AppBanner = () => {
7
7
const [ activeTheme ] = useThemeSwitcher ( ) ;
8
8
9
9
return (
10
- < section className = "flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm :mt-2" >
11
- < div className = "w-full sm :w-1/3 text-left" >
12
- < h1 className = "text-2xl sm:text-3xl lg:text-4xl xl:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase" >
10
+ < section className = "flex flex-col sm:justify-between items-center sm:flex-row mt-12 md :mt-2" >
11
+ < div className = "w-full md :w-1/3 text-left" >
12
+ < h1 className = "text-2xl lg:text-4xl xl:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase" >
13
13
Hi, Iam Stoman
14
14
</ h1 >
15
- < p className = "mt-4 text-xl sm:text-2xl lg:text-3xl xl:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400" >
15
+ < p className = "mt-4 text-lg sm:text-xl lg:text-3xl xl:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400" >
16
16
A Full-Stack Developer & Design Enthusiast
17
17
</ p >
18
18
< div className = "flex justify-center sm:block" >
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ const AppHeader = () => {
178
178
{ /* Header right section buttons start */ }
179
179
< div className = "hidden sm:flex justify-between items-center flex-col md:flex-row" >
180
180
{ /* Hire me button start */ }
181
- < div >
181
+ < div className = "hidden md:flex" >
182
182
< button
183
183
onClick = { showHireMeModal }
184
184
className = "text-md font-medium bg-indigo-500 hover:bg-indigo-600 text-white shadow-sm rounded-md px-5 py-2.5"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import ContactForm from '../components/contact/ContactForm';
3
3
4
4
const Contact = ( ) => {
5
5
return (
6
- < div className = "container mx-auto sm :flex py-5 sm :py-10 mt-5 sm :mt-10" >
6
+ < div className = "container mx-auto flex flex-col-reverse lg :flex-row py-5 lg :py-10 lg :mt-10" >
7
7
< ContactForm />
8
8
< ContactDetails />
9
9
</ div >
You can’t perform that action at this time.
0 commit comments