-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add default layout and nav bar (#1) * feat: add background (#2) * fix: remove navigation bar from login-page (#2) * feat: add login-page layout (#2) * fix: change mail image file (#2) * feat: add my-page layout (#3) * feat: add routes * fix: modified condition on the navigation bar * style: Fixed code with linter rule * style: Rearrange code * fix: Change image src url * feat: Add PuppleBackground Component * feat: Add Travel Components * feat: Add white hamburger button * feat: Modified ContentsCard height * feat: Add seperated ChoiceList component * feat: Modified ContentsCard CSS style * feat: Modified ContentsCard component max-height value * feat: Modified component rendering to seperate functions
- Loading branch information
Showing
21 changed files
with
559 additions
and
210 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,2 +1,3 @@ | ||
export * from './login-page'; | ||
export * from './my-page'; | ||
export * from './travel-auto-page'; |
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
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,19 @@ | ||
'use client'; | ||
|
||
import { TravelComponent } from '@/components'; | ||
import { ChoiceList } from '@/components/travel'; | ||
|
||
export function TravelAutoPage() { | ||
const data = { | ||
where: '부산 (Busan)', | ||
what: '웰니스 관광', | ||
when: '늦은 오후', | ||
}; | ||
|
||
const Contents = { | ||
backgroundNode: <ChoiceList choiceList={data} />, | ||
childNode: <></>, | ||
type: 'auto', | ||
}; | ||
return <TravelComponent contents={Contents} />; | ||
} |
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,5 @@ | ||
import { TravelAutoPage } from '@/app/pages'; | ||
|
||
export default function Login() { | ||
return <TravelAutoPage />; | ||
} |
Oops, something went wrong.