File tree 4 files changed +20
-4
lines changed
4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { Link } from 'react-router-dom' ;
2
2
3
- import logoLight from '../images/logo-light.svg' ;
3
+ // import logoLight from '../images/logo-light.svg';
4
4
import logoDark from '../images/logo-dark.svg' ;
5
5
6
6
const AppHeader = ( ) => {
Original file line number Diff line number Diff line change
1
+ const ContactDetails = ( ) => {
2
+ return (
3
+ < div >
4
+ < h1 > Contact details</ h1 >
5
+ </ div >
6
+ ) ;
7
+ } ;
8
+
9
+ export default ContactDetails ;
Original file line number Diff line number Diff line change
1
+ const ContactForm = ( ) => {
2
+ return (
3
+ < div >
4
+ < h1 > Contact form</ h1 >
5
+ </ div >
6
+ ) ;
7
+ } ;
8
+
9
+ export default ContactForm ;
Original file line number Diff line number Diff line change 1
1
const Contact = ( ) => {
2
2
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 >
6
4
) ;
7
5
} ;
8
6
You can’t perform that action at this time.
0 commit comments