diff --git a/components/common/Footer/Footer.tsx b/components/common/Footer/Footer.tsx index 04b80404e..e276b98c0 100644 --- a/components/common/Footer/Footer.tsx +++ b/components/common/Footer/Footer.tsx @@ -33,10 +33,10 @@ const Footer: FC = ({ className, pages }) => {
- + - ACME + CKUBE
@@ -55,35 +55,16 @@ const Footer: FC = ({ className, pages }) => {
- - - - +
- © 2020 ACME, Inc. All rights reserved. + © 2020 CKUBE. All rights reserved.
- Created by - - - +
diff --git a/components/common/Navbar/Navbar.tsx b/components/common/Navbar/Navbar.tsx index 45cda1bae..25ec83d8f 100644 --- a/components/common/Navbar/Navbar.tsx +++ b/components/common/Navbar/Navbar.tsx @@ -19,7 +19,7 @@ const Navbar: FC = ({ links }) => (
- + diff --git a/components/ui/Logo/Logo.tsx b/components/ui/Logo/Logo.tsx index f15bde40a..521ad0166 100644 --- a/components/ui/Logo/Logo.tsx +++ b/components/ui/Logo/Logo.tsx @@ -1,21 +1,10 @@ const Logo = ({ className = '', ...props }) => ( - - - - + alt="ckube"> ) export default Logo diff --git a/config/seo.json b/config/seo.json index 82520cf9b..1afd6c35d 100644 --- a/config/seo.json +++ b/config/seo.json @@ -1,26 +1,26 @@ { - "title": "ACME Storefront | Powered by Next.js Commerce", - "titleTemplate": "%s - ACME Storefront", - "description": "Next.js Commerce - https://www.nextjs.org/commerce", + "title": "CKUBE Storefront", + "titleTemplate": "%s - CKUBE Storefront", + "description": "", "openGraph": { - "title": "ACME Storefront | Powered by Next.js Commerce", - "description": "Next.js Commerce - https://www.nextjs.org/commerce", + "title": "CKUBE Storefront", + "description": "", "type": "website", "locale": "en_IE", - "url": "https://nextjs.org/commerce", - "site_name": "Next.js Commerce", + "url": "", + "site_name": "CKUBE Storefront", "images": [ { - "url": "/card.png", + "url": "/ckube_small.svg", "width": 800, "height": 600, - "alt": "Next.js Commerce" + "alt": "CKUBE Storefront" } ] }, "twitter": { - "handle": "@nextjs", - "site": "@nextjs", + "handle": "@ckube", + "site": "@ckube", "cardType": "summary_large_image" } -} +} \ No newline at end of file diff --git a/framework/elasticpath/api/operations/get-all-products.ts b/framework/elasticpath/api/operations/get-all-products.ts index 7c6cd8458..ac46bbabe 100644 --- a/framework/elasticpath/api/operations/get-all-products.ts +++ b/framework/elasticpath/api/operations/get-all-products.ts @@ -3,10 +3,7 @@ import { GetAllProductsOperation } from '@commerce/types/product' import type { OperationContext } from '@commerce/api/operations' import type { ElasticpathConfig, Provider } from '../index' import { gateway as MoltinGateway } from '@moltin/sdk' -import data from '../../data.json' import normalizeProduct from '../../utils/normalize' -import { debug } from 'console' -import { connect } from 'http2' const Moltin = MoltinGateway({ client_id: process.env.NEXT_PUBLIC_ELASTICPATH_CLIENTID diff --git a/framework/elasticpath/next.config.js b/framework/elasticpath/next.config.js index 9b928414b..847e85392 100644 --- a/framework/elasticpath/next.config.js +++ b/framework/elasticpath/next.config.js @@ -3,6 +3,7 @@ const commerce = require('./commerce.config.json') module.exports = { commerce, images: { + domains: ['localhost'], domains: ['s3-eu-west-1.amazonaws.com'], }, webpack: (config, { isServer }) => { diff --git a/public/ckube_small.svg b/public/ckube_small.svg new file mode 100644 index 000000000..ce3d01495 --- /dev/null +++ b/public/ckube_small.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/favicon.ico b/public/favicon.ico index c4826c947..0ca782adc 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/site.webmanifest b/public/site.webmanifest index bb792da42..875a136bd 100644 --- a/public/site.webmanifest +++ b/public/site.webmanifest @@ -1,7 +1,7 @@ { - "name": "Next.js Commerce", - "short_name": "Next.js Commerce", - "description": "Next.js Commerce -> https://www.nextjs.org/commerce", + "name": "CKUBE", + "short_name": "CKUBE", + "description": "CKUBE", "display": "standalone", "start_url": "/", "theme_color": "#fff", @@ -9,13 +9,13 @@ "orientation": "portrait", "icons": [ { - "src": "/icon-192x192.png", - "type": "image/png", + "src": "/ckube_small.svg", + "type": "image/svg", "sizes": "192x192" }, { - "src": "/icon-512x512.png", - "type": "image/png", + "src": "/ckube_small.svg", + "type": "image/svg", "sizes": "512x512" } ]