File tree Expand file tree Collapse file tree 5 files changed +30
-32
lines changed Expand file tree Collapse file tree 5 files changed +30
-32
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Footer of the application.
3
3
*/
4
- const Footer = ( ) => (
5
- < footer className = "w-full sm:mt-20 mt-2 sm:bottom-0 px-6 mb-28 sm:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow" >
6
- < div className = "p-6" >
7
- Copyright © { new Date ( ) . getFullYear ( ) } Daniel / w3bdesign
8
- </ div >
9
- </ footer >
10
- ) ;
11
-
12
- export default Footer ;
13
-
4
+ const Footer = ( ) => (
5
+ < footer className = "w-full sm:mt-20 mt-2 sm:bottom-0 px-6 mb-28 sm:mb-2 mx-auto text-center bg-white border border-gray-300 rounded-lg shadow" >
6
+ < div className = "p-6" >
7
+ Copyright © { new Date ( ) . getFullYear ( ) } Daniel / w3bdesign
8
+ </ div >
9
+ </ footer >
10
+ ) ;
11
+
12
+ export default Footer ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Navbar from './Navbar.component';
9
9
const Header = ( { title } ) => (
10
10
< >
11
11
< Head >
12
- < title > Nextjs Ecommerce with WooCommerce { title ? title : '' } </ title >
12
+ < title > Next.js webshop with WooCommerce { title ? title : '' } </ title >
13
13
< meta name = "description" content = "WooCommerce webshop" />
14
14
< meta name = "keywords" content = "Ecommerce, WooCommerce" />
15
15
< meta
Original file line number Diff line number Diff line change 16
16
"license" : " ISC" ,
17
17
"dependencies" : {
18
18
"@apollo/client" : " ^3.6.2" ,
19
- "@types/react" : " ^18.0.8 " ,
19
+ "@types/react" : " ^18.0.9 " ,
20
20
"algoliasearch" : " ^4.13.0" ,
21
21
"autoprefixer" : " ^10.4.7" ,
22
22
"framer-motion" : " ^6.3.3" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import 'nprogress/nprogress.css';
13
13
14
14
import client from 'utils/apollo/ApolloClient' ;
15
15
16
-
17
16
Router . events . on ( 'routeChangeStart' , ( ) => NProgress . start ( ) ) ;
18
17
Router . events . on ( 'routeChangeComplete' , ( ) => NProgress . done ( ) ) ;
19
18
Router . events . on ( 'routeChangeError' , ( ) => NProgress . done ( ) ) ;
You can’t perform that action at this time.
0 commit comments