Changed the links to shop.mozimo.in
This commit is contained in:
9
Makefile
9
Makefile
@ -1,7 +1,12 @@
|
|||||||
.PHONY: build-production
|
.PHONY: build-production
|
||||||
build-production: ## Build the production docker image.
|
build-production: ## Build the production docker image.
|
||||||
@docker buildx build \
|
@docker buildx build \
|
||||||
--network=host \
|
--platform linux/amd64,linux/arm64/v8 \
|
||||||
--tag kakawa:latest \
|
--allow security.insecure \
|
||||||
|
--allow network.host \
|
||||||
|
--network=host \
|
||||||
|
--tag registry.tanshu.com/kakawa:latest \
|
||||||
|
$(if $(TAG),--tag registry.tanshu.com/kakawa:$(TAG)) \
|
||||||
|
--push \
|
||||||
$(shell grep -v '^#' .env.local | sed 's/^/--build-arg /') \
|
$(shell grep -v '^#' .env.local | sed 's/^/--build-arg /') \
|
||||||
git@git.tanshu.com:tanshu/kakawa.git
|
git@git.tanshu.com:tanshu/kakawa.git
|
||||||
@ -34,3 +34,7 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next
|
|||||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||||
|
|
||||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
||||||
|
|
||||||
|
|
||||||
|
## Docker BuildKit for enabling insecure builder
|
||||||
|
docker buildx create --use --name insecure-builder --buildkitd-flags '--allow-insecure-entitlement security.insecure'
|
||||||
@ -99,7 +99,7 @@ export function Navbar() {
|
|||||||
<Link href='/about-us' className='font-light animated-underline'>
|
<Link href='/about-us' className='font-light animated-underline'>
|
||||||
About Us
|
About Us
|
||||||
</Link>
|
</Link>
|
||||||
<Link href='/products' className='font-light animated-underline'>
|
<Link href='https://shop.mozimo.in' className='font-light animated-underline'>
|
||||||
Shop
|
Shop
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
@ -149,7 +149,7 @@ export function Navbar() {
|
|||||||
<FiUser size={20} className='m-2.5' />
|
<FiUser size={20} className='m-2.5' />
|
||||||
</Link>
|
</Link>
|
||||||
)}
|
)}
|
||||||
<a aria-label='Shopping Cart' href='/cart' className='rounded-full hover:shadow-md'>
|
<a aria-label='Shopping Cart' href='https://shop.mozimo.in' className='rounded-full hover:shadow-md'>
|
||||||
<HiShoppingBag size={20} className='m-2.5' />
|
<HiShoppingBag size={20} className='m-2.5' />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user