diff --git a/Makefile b/Makefile
index e2bc221..fd6e749 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,12 @@
.PHONY: build-production
build-production: ## Build the production docker image.
@docker buildx build \
- --network=host \
- --tag kakawa:latest \
+ --platform linux/amd64,linux/arm64/v8 \
+ --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 /') \
- git@git.tanshu.com:tanshu/kakawa.git
\ No newline at end of file
+ git@git.tanshu.com:tanshu/kakawa.git
diff --git a/README.md b/README.md
index e215bc4..55af8d2 100644
--- a/README.md
+++ b/README.md
@@ -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.
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'
\ No newline at end of file
diff --git a/src/components/navbar.tsx b/src/components/navbar.tsx
index a66821b..58900ae 100644
--- a/src/components/navbar.tsx
+++ b/src/components/navbar.tsx
@@ -99,7 +99,7 @@ export function Navbar() {
About Us
-
+
Shop
@@ -149,7 +149,7 @@ export function Navbar() {
)}
-
+