-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from Katsuyuki-Karasawa/tailwind
some changes
- Loading branch information
Showing
68 changed files
with
4,266 additions
and
4,859 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:import/recommended", | ||
"plugin:import/warnings", | ||
"prettier" | ||
], | ||
"rules": { | ||
"import/order": [ | ||
"error", | ||
{ | ||
"alphabetize": { | ||
"order": "asc" | ||
} | ||
} | ||
] | ||
} | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:import/recommended", | ||
"plugin:import/warnings", | ||
"prettier" | ||
], | ||
"rules": { | ||
"import/order": [ | ||
"error", | ||
{ | ||
"alphabetize": { | ||
"order": "asc" | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target: | ||
branches: | ||
- "main" | ||
- "dev" | ||
labels: | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
groups: | ||
dependencies: | ||
patterns: | ||
- "*" | ||
target: | ||
branches: | ||
- "main" | ||
- "dev" | ||
- "tailwind" | ||
labels: | ||
- "Dependabot" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Biome | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "./src" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "./src" | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Biome | ||
uses: biomejs/setup-biome@v1 | ||
with: | ||
version: 1.3.3 | ||
- name: Run Biome | ||
run: biome ci . |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json", | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"formatWithErrors": false, | ||
"indentStyle": "tab", | ||
"indentWidth": 2, | ||
"lineWidth": 80, | ||
"ignore": [] | ||
}, | ||
"files": { | ||
"ignore": [".next", "node_modules", "@/__generated__"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "new-york", | ||
"rsc": true, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src\\app\\globals.css", | ||
"baseColor": "slate", | ||
"cssVariables": true | ||
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "new-york", | ||
"rsc": true, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src\\app\\globals.css", | ||
"baseColor": "slate", | ||
"cssVariables": true | ||
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { getRequestConfig } from 'next-intl/server'; | ||
import { getRequestConfig } from "next-intl/server"; | ||
|
||
export default getRequestConfig(async ({locale}) => ({ | ||
messages: (await import(`./locales/${locale}/common.json`)).default | ||
})); | ||
export default getRequestConfig(async ({ locale }) => ({ | ||
messages: (await import(`./locales/${locale}/common.json`)).default, | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import "i18next"; | ||
|
||
declare module "i18next" { | ||
interface CustomTypeOptions { | ||
returnNull: false; | ||
} | ||
interface CustomTypeOptions { | ||
returnNull: false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,71 @@ | ||
{ | ||
"Home": { | ||
"forai": "AIBoX is an ongoing support service for AI creators.", | ||
"find": "Find a Creators", | ||
"slogan1": "Unlock the potential of your work.", | ||
"slogan2": "AI unleashes your creativity.", | ||
"slogan3": "Share your work with the world" | ||
}, | ||
"About": { | ||
"creater": "AIクリエイターのための", | ||
"patron": "支援サービス", | ||
"aibox": "「AIBoX」" | ||
}, | ||
"Login": { | ||
"login": "Login", | ||
"email": "Email", | ||
"password": "Password", | ||
"forgot": "Forgot Password?", | ||
"remember": "Remember Me", | ||
"google": "Login with Google" | ||
}, | ||
"Signup": { | ||
"signup": "Sign Up", | ||
"email": "Email", | ||
"start": "Start your journey", | ||
"google": "Sign Up with Google", | ||
"password": "Password", | ||
"confirm_password": "パスワードの確認", | ||
"agree": "次の規約に同意する:", | ||
"agreements": "利用規約とプライバシーポリシー" | ||
}, | ||
"Header": { | ||
"home": "Home", | ||
"about": "About", | ||
"creators": "Creators", | ||
"notice": "Notice", | ||
"login": "Login", | ||
"signup": "Sign Up", | ||
"google": "Sign Up with Google" | ||
}, | ||
"Check": { | ||
"wrongemail": "メールアドレスの形式が間違っています", | ||
"password_length": "パスワードは12文字以上で設定してください", | ||
"confirm_notmatch": "パスワードが一致しません", | ||
"pw_length": "パスワードは八文字以上で設定してください", | ||
"pw_include_symbol": "パスワードには記号を入れてください" | ||
}, | ||
"Setup": { | ||
"setup": "セットアップ", | ||
"user_id": "ユーザーID", | ||
"display_name": "表示名", | ||
"dob": "生年月日", | ||
"start": "Start your journey" | ||
}, | ||
"Dashboard": { | ||
"dashboard": "ダッシュボード", | ||
"profile": "プロフィール", | ||
"assets": "投稿", | ||
"plans": "支援プラン", | ||
"packages": "パッケージ", | ||
"earnings": "収益", | ||
"addProfile": "プロフィールを追加" | ||
}, | ||
"MailSent": { | ||
"mailsent": "登録メールを送信完了", | ||
"mailsentto": "登録メールを {{ email }} に送信しました", | ||
"resend": "再送信する", | ||
"back": "戻る", | ||
"resent": "再送信完了" | ||
} | ||
"Home": { | ||
"forai": "AIBoX is an ongoing support service for AI creators.", | ||
"find": "Find a Creators", | ||
"slogan1": "Unlock the potential of your work.", | ||
"slogan2": "AI unleashes your creativity.", | ||
"slogan3": "Share your work with the world" | ||
}, | ||
"About": { | ||
"creater": "AIクリエイターのための", | ||
"patron": "支援サービス", | ||
"aibox": "「AIBoX」" | ||
}, | ||
"Login": { | ||
"login": "Login", | ||
"email": "Email", | ||
"password": "Password", | ||
"forgot": "Forgot Password?", | ||
"remember": "Remember Me", | ||
"google": "Login with Google" | ||
}, | ||
"Signup": { | ||
"signup": "Sign Up", | ||
"email": "Email", | ||
"start": "Start your journey", | ||
"google": "Sign Up with Google", | ||
"password": "Password", | ||
"confirm_password": "パスワードの確認", | ||
"agree": "次の規約に同意する:", | ||
"agreements": "利用規約とプライバシーポリシー" | ||
}, | ||
"Header": { | ||
"home": "Home", | ||
"about": "About", | ||
"creators": "Creators", | ||
"notice": "Notice", | ||
"login": "Login", | ||
"signup": "Sign Up", | ||
"google": "Sign Up with Google" | ||
}, | ||
"Check": { | ||
"wrongemail": "メールアドレスの形式が間違っています", | ||
"password_length": "パスワードは12文字以上で設定してください", | ||
"confirm_notmatch": "パスワードが一致しません", | ||
"pw_length": "パスワードは八文字以上で設定してください", | ||
"pw_include_symbol": "パスワードには記号を入れてください" | ||
}, | ||
"Setup": { | ||
"setup": "セットアップ", | ||
"user_id": "ユーザーID", | ||
"display_name": "表示名", | ||
"dob": "生年月日", | ||
"start": "Start your journey" | ||
}, | ||
"Dashboard": { | ||
"dashboard": "ダッシュボード", | ||
"profile": "プロフィール", | ||
"assets": "投稿", | ||
"plans": "支援プラン", | ||
"packages": "パッケージ", | ||
"earnings": "収益", | ||
"addProfile": "プロフィールを追加" | ||
}, | ||
"MailSent": { | ||
"mailsent": "登録メールを送信完了", | ||
"mailsentto": "登録メールを {{ email }} に送信しました", | ||
"resend": "再送信する", | ||
"back": "戻る", | ||
"resent": "再送信完了" | ||
} | ||
} |
Oops, something went wrong.