Skip to content

Commit

Permalink
Merge pull request #150 from DDD-Community/feature/new-year-theme
Browse files Browse the repository at this point in the history
[HOTFIX] 새해 테마 폴라로이드 순서 변경, 크리스마스 이미지 롤백
  • Loading branch information
junseublim authored Jan 1, 2025
2 parents e18d284 + 9c1dc64 commit b778d62
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="./public/images/polabo-logo-christmas.png" height="100" />
<img src="./public/images/polabo-logo.png" height="100" />
<br />
<strong>함께 꾸미는 폴라로이드 보드</strong>
</div>
Expand Down Expand Up @@ -37,7 +37,7 @@ $ npm run dev

**3. 커밋 메세지**

> #{이슈번호} {type}: [작업한 내용]
> #{이슈번호} {type}: [작업한 내용]
> ex) #300 feat: 어쩌구저쩌구
**5. Issue 제목**
Expand Down
4 changes: 2 additions & 2 deletions src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import Image from 'next/image'
import PolaroidsIcon from 'public/icons/home_polaroids.svg'
import PolaboLogo from 'public/images/polabo-logo-christmas.png'
import PolaboLogo from 'public/images/polabo-logo.png'
import Hamburger from '@/components/HamburgerMenu'
import CopyLinkBtn from './_components/CopyLinkBtn'
import CreateBoardBtn from './_components/CreateBoardBtn'
import TotalCount from './_components/TotalCount'

const HomePage = () => {
return (
<div className="fixed left-0 right-0 mx-auto flex h-dvh max-w-md flex-col items-center justify-between bg-[url('/images/home-christmas.png')] bg-cover px-5 text-gray-0">
<div className="fixed left-0 right-0 mx-auto flex h-dvh max-w-md flex-col items-center justify-between bg-[url('/images/home.png')] bg-cover px-5">
<Hamburger className="absolute left-5 top-5" />
<div className="overscroll-none pt-12">
<PolaroidsIcon className="m-auto" />
Expand Down
2 changes: 1 addition & 1 deletion src/app/(onboarding)/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/image'
import PolaroidsIcon from 'public/icons/home_polaroids.svg'
import LoginPolaroid from 'public/icons/login_polaroid.png'
import PolaboLogo from 'public/images/polabo-logo-christmas.png'
import PolaboLogo from 'public/images/polabo-logo.png'
import KakaoLogin from './_components/KakaoLogin'
import Policy from './_components/Policy'

Expand Down
2 changes: 1 addition & 1 deletion src/app/board/create/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import BackButton from '@/app/board/create/_components/BackButton'
import BoardNameRecommendations from '@/app/board/create/_components/BoardNameRecommendations'
import Image from 'next/image'
import PolaboLogo from 'public/images/polabo-logo-christmas.png'
import PolaboLogo from 'public/images/polabo-logo.png'
import BoardAvailabilityCheckModal from './_components/BoardAvailabilityCheckModal'
import BoardNameForm from './_components/BoardNameForm'

Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants/polaroidConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export const FILTERS = {
} as const

export const ORDERED_THEMAS: ThemaKeyType[] = [
'F-0',
'F-19',
'F-20',
'F-21',
'F-22',
'F-0',
'F-12',
'F-13',
'F-14',
Expand Down

0 comments on commit b778d62

Please sign in to comment.