Skip to content

Commit

Permalink
Merge pull request #96 from TripInfoWeb/dev_diary
Browse files Browse the repository at this point in the history
Feature: 여행일기 페이지 퍼블리싱
  • Loading branch information
HyunJinNo authored Jul 6, 2024
2 parents 2cece6d + b80de18 commit 1f36223
Show file tree
Hide file tree
Showing 27 changed files with 501 additions and 61 deletions.
3 changes: 3 additions & 0 deletions public/day-text.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
9 changes: 9 additions & 0 deletions public/diary-image2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions public/mood-icon1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions public/mood-icon2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions public/mood-icon3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions public/mood-icon4.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions public/mood-icon5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/pencil-green-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/app/diary/list/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import DiaryList from "@/components/diary/DiaryList";
import DiaryListSkeleton from "@/components/skeleton/diary/DiaryListSkeleton";
import { Metadata } from "next";
import { Suspense } from "react";

export const metadata: Metadata = {
title: "여행일기",
description: "Solitour 여행일기 페이지",
};

export default function page() {
return (
<div className="flex flex-col items-center py-4">
<Suspense fallback={<DiaryListSkeleton />}>
<DiaryList />
</Suspense>
</div>
);
}
15 changes: 0 additions & 15 deletions src/app/journals/list/page.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/common/FloatingButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const FloatingButton = ({ visible, onClick, onScrollToTop }: MyProps) => {
<div className="flex animate-fadeIn flex-col items-center gap-6 rounded-full bg-[#F2FAF7] px-4 py-[1.875rem] dark:bg-slate-500">
<Link
className="flex flex-col items-center text-sm hover:text-main"
href="/journals/write"
href="/diary/write"
onClick={onClick}
>
<p>일기</p>
Expand Down
Loading

0 comments on commit 1f36223

Please sign in to comment.