Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcjy committed Jul 7, 2024
2 parents 421eb66 + 4bebeea commit 4a4dd7f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: ["main"]
# Runs every day at 3:00
schedule:
- cron: '0 3 * * *'
- cron: '0 19 * * *'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -56,16 +56,16 @@ jobs:
with:
node-version: "20"
cache: ${{ steps.detect-package-manager.outputs.manager }}
- name: Restore cache
uses: actions/cache@v4
with:
path: |
.next/cache
#- name: Restore cache
# uses: actions/cache@v4
# with:
# path: |
# .next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
# restore-keys: |
# ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
- name: Install dependencies
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
- name: Add export configuration
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 방문자 수 조회

[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fpaulcjy.github.io%2Fdaily-bible%2F&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)


This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started
Expand Down
4 changes: 2 additions & 2 deletions bible/4.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
16. 그가 너를 대신하여 백성에게 말할 것이니 그는 네 입을 대신할 것이요 너는 그에게 하나님 같이 되리라
17. 너는 이 지팡이를 손에 잡고 이것으로 이적을 행할지니라

# 모세가 애굽으로 돌아가다
## 모세가 애굽으로 돌아가다
18. 모세가 그의 장인 이드로에게로 돌아가서 그에게 이르되 내가 애굽에 있는 내 형제들에게로 돌아가서 그들이 아직 살아 있는지 알아보려 하오니 나로 가게 하소서 이드로가 모세에게 평안히 가라 하니라
19. 여호와께서 미디안에서 모세에게 이르시되 애굽으로 돌아가라 네 목숨을 노리던 자가 다 죽었느니라
20. 모세가 그의 아내와 아들들을 나귀에 태우고 애굽으로 돌아가는데 모세가 하나님의 지팡이를 손에 잡았더라
Expand All @@ -33,4 +33,4 @@
28. 모세가 여호와께서 자기에게 분부하여 보내신 모든 말씀과 여호와께서 자기에게 명령하신 모든 이적을 아론에게 알리니라
29. 모세와 아론이 가서 이스라엘 자손의 모든 장로를 모으고
30. 아론이 여호와께서 모세에게 이르신 모든 말씀을 전하고 그 백성 앞에서 이적을 행하니
31. 백성이 믿으며 여호와께서 이스라엘 자손을 찾으시고 그들의 고난을 살피셨다 함을 듣고 머리 숙여 경배하였더라
31. 백성이 믿으며 여호와께서 이스라엘 자손을 찾으시고 그들의 고난을 살피셨다 함을 듣고 머리 숙여 경배하였더라
12 changes: 9 additions & 3 deletions components/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ export const Calendar = () => {
for (let i = julyStartIdx, day = 1; day <= julyDays; i++, day++) july[Math.floor(i / 7)][i % 7] = day

const exodus = [null, '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23-24', '25-26', '27-28', '29-30', '31-32', '33-34', '35-36', '37-38', '39-40']
const today = new Date();

const today = () => {
const date = new Date()
const UTC = date.getTime() + (date.getTimezoneOffset() * 60 * 1000)
const KOR = 9 * 60 * 60 * 1000
return new Date(UTC + KOR).getDate()
}

const setDayColor = (idx: number) => `${idx === 0 ? 'text-red-500' : ''} ${idx === 6 ? 'text-blue-600' : ''}`

Expand All @@ -25,7 +31,7 @@ export const Calendar = () => {
{july.map((row: number[], i) => (
<div key={i} className="table-row">
{row.map((day: number, i) => (
<Link key={i} href={day ? `/${day}` : '#'} className={`table-cell border ${day === today.getDay() ? 'border-2 border-red-400 bg-red-100/50' : null}`}>
<Link key={i} href={day ? `/${day}` : '#'} className={`table-cell border ${day === today() ? 'border-2 border-red-400 bg-red-100/50' : ''}`}>
{day ?
<div>
<div className={`p-1.5 sm:p-2 font-bold sm:text-xl ${setDayColor(i)}`}>{day}</div>
Expand All @@ -49,4 +55,4 @@ export const Calendar = () => {
// {col ?
// <div className="border w-full text-center">{`출애굽기 ${col}장`}</div> : null}
// </div>
// )
// )

0 comments on commit 4a4dd7f

Please sign in to comment.