CHORE(merge): merge from develop
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled

- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
This commit is contained in:
2026-01-06 17:29:16 +09:00
parent b4ce36ba3b
commit f78454c2a1
159 changed files with 18365 additions and 774 deletions

47
nextjs/app/manifest.ts Normal file
View File

@@ -0,0 +1,47 @@
import { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: '제자들교회',
short_name: '제자들교회',
description: '인천 제자들교회 - 성경적 제자도를 실천하는 교회',
start_url: '/',
display: 'standalone',
background_color: '#ffffff',
theme_color: '#000000',
orientation: 'portrait',
icons: [
{
src: '/icon_black.webp',
sizes: 'any',
type: 'image/webp',
},
{
src: '/icon_black.webp',
sizes: 'any',
type: 'image/webp',
purpose: 'maskable',
},
{
src: '/icon_white.webp',
sizes: 'any',
type: 'image/webp',
},
{
src: '/icon_white.webp',
sizes: 'any',
type: 'image/webp',
purpose: 'maskable',
},
{
src: '/logo.webp',
sizes: 'any',
type: 'image/webp',
},
],
categories: ['church', 'religion', 'community'],
lang: 'ko-KR',
dir: 'ltr',
}
}