Changed the links to shop.mozimo.in

This commit is contained in:
2025-07-19 11:40:12 +00:00
parent a6bcc5cc1c
commit 0d7b1a0c13
3 changed files with 14 additions and 5 deletions

View File

@ -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
git@git.tanshu.com:tanshu/kakawa.git

View File

@ -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'

View File

@ -99,7 +99,7 @@ export function Navbar() {
<Link href='/about-us' className='font-light animated-underline'>
About Us
</Link>
<Link href='/products' className='font-light animated-underline'>
<Link href='https://shop.mozimo.in' className='font-light animated-underline'>
Shop
</Link>
</div>
@ -149,7 +149,7 @@ export function Navbar() {
<FiUser size={20} className='m-2.5' />
</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' />
</a>
</div>