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 11/**
22 * Footer of the application.
33 */
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';
99const Header = ( { title } ) => (
1010 < >
1111 < Head >
12- < title > Nextjs Ecommerce with WooCommerce { title ? title : '' } </ title >
12+ < title > Next.js webshop with WooCommerce { title ? title : '' } </ title >
1313 < meta name = "description" content = "WooCommerce webshop" />
1414 < meta name = "keywords" content = "Ecommerce, WooCommerce" />
1515 < meta
Original file line number Diff line number Diff line change 1616 "license" : " ISC" ,
1717 "dependencies" : {
1818 "@apollo/client" : " ^3.6.2" ,
19- "@types/react" : " ^18.0.8 " ,
19+ "@types/react" : " ^18.0.9 " ,
2020 "algoliasearch" : " ^4.13.0" ,
2121 "autoprefixer" : " ^10.4.7" ,
2222 "framer-motion" : " ^6.3.3" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import 'nprogress/nprogress.css';
1313
1414import client from 'utils/apollo/ApolloClient' ;
1515
16-
1716Router . events . on ( 'routeChangeStart' , ( ) => NProgress . start ( ) ) ;
1817Router . events . on ( 'routeChangeComplete' , ( ) => NProgress . done ( ) ) ;
1918Router . events . on ( 'routeChangeError' , ( ) => NProgress . done ( ) ) ;
You can’t perform that action at this time.
0 commit comments