Skip to content

Commit f8cb53d

Browse files
committed
Contact components
1 parent 7af1524 commit f8cb53d

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

src/components/AppHeader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Link } from 'react-router-dom';
22

3-
import logoLight from '../images/logo-light.svg';
3+
// import logoLight from '../images/logo-light.svg';
44
import logoDark from '../images/logo-dark.svg';
55

66
const AppHeader = () => {

src/components/ContactDetails.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const ContactDetails = () => {
2+
return (
3+
<div>
4+
<h1>Contact details</h1>
5+
</div>
6+
);
7+
};
8+
9+
export default ContactDetails;

src/components/ContactForm.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const ContactForm = () => {
2+
return (
3+
<div>
4+
<h1>Contact form</h1>
5+
</div>
6+
);
7+
};
8+
9+
export default ContactForm;

src/pages/Contact.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
const Contact = () => {
22
return (
3-
<div>
4-
<h1>This is the contact page</h1>
5-
</div>
3+
<div className="container mx-auto sm:flex py-5 sm:py-10 mt-10 sm:mt-20"></div>
64
);
75
};
86

0 commit comments

Comments
 (0)