├── .github
└── FUNDING.yml
├── .gitignore
├── 00-playground
├── 03-file-based routing
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── pages
│ │ ├── 404.js
│ │ ├── _app.js
│ │ ├── about.js
│ │ ├── api
│ │ │ └── hello.js
│ │ ├── blog
│ │ │ └── [...slug].js
│ │ ├── clients
│ │ │ ├── [id]
│ │ │ │ ├── [clientprojectid].js
│ │ │ │ └── index.js
│ │ │ └── index.js
│ │ ├── index.js
│ │ └── portfolio
│ │ │ ├── [projectid].js
│ │ │ ├── index.js
│ │ │ └── list.js
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── styles
│ │ └── globals.css
│ └── yarn.lock
├── 05-page pre-rendering and data fetching
│ ├── .gitignore
│ ├── README.md
│ ├── data
│ │ └── dummy-backend.json
│ ├── package.json
│ ├── pages
│ │ ├── [pid].js
│ │ ├── _app.js
│ │ ├── api
│ │ │ └── hello.js
│ │ ├── index.js
│ │ ├── last-sales.js
│ │ ├── last-sales2.js
│ │ ├── last-sales3.js
│ │ ├── user-profile.js
│ │ └── user
│ │ │ └── [uid].js
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── styles
│ │ └── globals.css
│ └── yarn.lock
├── 08-adding backend code with API routes
│ ├── .gitignore
│ ├── README.md
│ ├── data
│ │ └── feedback.json
│ ├── dummy-data.js
│ ├── package.json
│ ├── pages
│ │ ├── _app.js
│ │ ├── api
│ │ │ └── feedback
│ │ │ │ ├── [feedbackId].js
│ │ │ │ └── index.js
│ │ ├── feedback.js
│ │ └── index.js
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── styles
│ │ └── globals.css
│ └── yarn.lock
├── 09-jit-next
│ ├── .gitignore
│ ├── README.md
│ ├── package-lock.json
│ ├── package.json
│ ├── pages
│ │ ├── _app.js
│ │ ├── api
│ │ │ └── hello.js
│ │ └── index.js
│ ├── postcss.config.js
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── styles
│ │ └── styles.css
│ └── tailwind.config.js
├── 10-todo-xstate
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── machines
│ │ ├── myFirstMachine.ts
│ │ ├── todoAppMachine.ts
│ │ └── todoAppMachine.typegen.ts
│ ├── next-env.d.ts
│ ├── next.config.js
│ ├── package-lock.json
│ ├── package.json
│ ├── pages
│ │ ├── _app.tsx
│ │ └── index.tsx
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── screenshot.png
│ └── tsconfig.json
├── 11-nextjs-13-demo
│ ├── .env
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── app
│ │ ├── globals.css
│ │ ├── issues
│ │ │ ├── [issueId]
│ │ │ │ ├── error.tsx
│ │ │ │ ├── loading.tsx
│ │ │ │ └── page.tsx
│ │ │ ├── layout.module.css
│ │ │ ├── layout.tsx
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components
│ │ ├── issues
│ │ │ ├── IssueDetails.module.css
│ │ │ ├── IssueDetails.tsx
│ │ │ ├── IssueListing.tsx
│ │ │ └── types.tsx
│ │ └── ui
│ │ │ ├── MainNavigation.module.css
│ │ │ └── MainNavigation.tsx
│ ├── next.config.js
│ ├── package-lock.json
│ ├── package.json
│ ├── prisma
│ │ ├── demo.db
│ │ ├── schema.prisma
│ │ └── seed.ts
│ ├── public
│ │ ├── favicon.ico
│ │ └── vercel.svg
│ ├── screenshot.png
│ ├── tsconfig.json
│ └── util
│ │ └── time.ts
├── 12-dagny-media
│ ├── .gitignore
│ ├── README.md
│ ├── app
│ │ ├── about
│ │ │ ├── page.jsx
│ │ │ └── team
│ │ │ │ └── page.jsx
│ │ ├── api
│ │ │ ├── courses
│ │ │ │ ├── data.json
│ │ │ │ ├── route.js
│ │ │ │ └── search
│ │ │ │ │ └── route.js
│ │ │ └── hello
│ │ │ │ └── route.js
│ │ ├── code
│ │ │ └── repos
│ │ │ │ ├── [name]
│ │ │ │ └── page.jsx
│ │ │ │ └── page.jsx
│ │ ├── components
│ │ │ ├── CourseSearch.jsx
│ │ │ ├── Courses.jsx
│ │ │ ├── Header.jsx
│ │ │ ├── Repo.jsx
│ │ │ └── RepoDirs.jsx
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.jsx
│ │ ├── loading.jsx
│ │ └── page.jsx
│ ├── jsconfig.json
│ ├── next.config.mjs
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ ├── next.svg
│ │ └── vercel.svg
│ └── screenshot.png
├── 13-dojo-helpdesk
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── _data
│ │ └── db.json
│ ├── app
│ │ ├── components
│ │ │ ├── Navbar.jsx
│ │ │ └── dojo-logo.png
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.jsx
│ │ ├── not-found.jsx
│ │ ├── page.jsx
│ │ └── tickets
│ │ │ ├── TicketList.jsx
│ │ │ ├── [id]
│ │ │ └── page.jsx
│ │ │ ├── create
│ │ │ ├── CreateForm.jsx
│ │ │ └── page.jsx
│ │ │ ├── loading.jsx
│ │ │ ├── not-found.jsx
│ │ │ └── page.jsx
│ ├── jsconfig.json
│ ├── next.config.mjs
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ ├── next.svg
│ │ └── vercel.svg
│ ├── screenshot.png
│ └── tailwind.config.js
├── 14-ninja-recipes
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── _data
│ │ └── db.json
│ ├── components.json
│ ├── next.config.mjs
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ └── img
│ │ │ ├── chocolate_cookies.jpg
│ │ │ ├── grilled_mushrooms.jpg
│ │ │ ├── mushroom_risotto.jpg
│ │ │ ├── roasted_veg_salad.jpg
│ │ │ ├── veg_alfredo.jpg
│ │ │ ├── veg_lentil_soup.jpg
│ │ │ ├── veg_stir_fry.jpg
│ │ │ ├── veggie_carbonara.jpg
│ │ │ └── veggie_tacos.jpg
│ ├── screenshot.png
│ ├── src
│ │ ├── app
│ │ │ ├── favicon.ico
│ │ │ ├── globals.css
│ │ │ ├── layout.tsx
│ │ │ ├── loading.tsx
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ ├── SkeletonCard.tsx
│ │ │ └── ui
│ │ │ │ ├── avatar.tsx
│ │ │ │ ├── badge.tsx
│ │ │ │ ├── button.tsx
│ │ │ │ ├── card.tsx
│ │ │ │ └── skeleton.tsx
│ │ └── lib
│ │ │ └── utils.ts
│ ├── tailwind.config.ts
│ └── tsconfig.json
└── 15-insightnest
│ ├── .eslintrc.json
│ ├── .gitignore
│ ├── README.md
│ ├── app
│ ├── (auth)
│ │ ├── auth
│ │ │ └── page.tsx
│ │ └── layout.tsx
│ ├── (main)
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ └── posts
│ │ │ ├── edit
│ │ │ └── [id]
│ │ │ │ └── page.tsx
│ │ │ └── page.tsx
│ ├── favicon.ico
│ ├── globals.css
│ └── layout.tsx
│ ├── components.json
│ ├── components
│ ├── BackButton.tsx
│ ├── Navbar.tsx
│ ├── Sidebar.tsx
│ ├── ThemeToggler.tsx
│ ├── auth
│ │ ├── AuthTabs.tsx
│ │ ├── LoginForm.tsx
│ │ └── RegisterForm.tsx
│ ├── dashboard
│ │ ├── AnalyticsChart.tsx
│ │ └── DashboardCard.tsx
│ ├── posts
│ │ ├── PostsPagination.tsx
│ │ └── PostsTable.tsx
│ ├── providers
│ │ └── ThemeProvider.tsx
│ └── ui
│ │ ├── avatar.tsx
│ │ ├── button.tsx
│ │ ├── card.tsx
│ │ ├── command.tsx
│ │ ├── dialog.tsx
│ │ ├── dropdown-menu.tsx
│ │ ├── form.tsx
│ │ ├── input.tsx
│ │ ├── label.tsx
│ │ ├── pagination.tsx
│ │ ├── table.tsx
│ │ ├── tabs.tsx
│ │ ├── textarea.tsx
│ │ ├── toast.tsx
│ │ ├── toaster.tsx
│ │ └── use-toast.ts
│ ├── data
│ ├── analytics.ts
│ └── posts.ts
│ ├── img
│ └── logo.png
│ ├── lib
│ └── utils.ts
│ ├── next.config.mjs
│ ├── package-lock.json
│ ├── package.json
│ ├── postcss.config.mjs
│ ├── public
│ ├── next.svg
│ └── vercel.svg
│ ├── screenshot.png
│ ├── tailwind.config.ts
│ ├── tsconfig.json
│ └── types
│ ├── analytics.ts
│ └── posts.ts
├── 01-nextevents
├── .gitignore
├── README.md
├── components
│ ├── event-detail
│ │ ├── event-content.js
│ │ ├── event-content.module.css
│ │ ├── event-logistics.js
│ │ ├── event-logistics.module.css
│ │ ├── event-summary.js
│ │ ├── event-summary.module.css
│ │ ├── logistics-item.js
│ │ └── logistics-item.module.css
│ ├── events
│ │ ├── event-item.js
│ │ ├── event-item.module.css
│ │ ├── event-list.js
│ │ ├── event-list.module.css
│ │ ├── events-search.js
│ │ ├── events-search.module.css
│ │ ├── results-title.js
│ │ └── results-title.module.css
│ ├── icons
│ │ ├── address-icon.js
│ │ ├── arrow-right-icon.js
│ │ └── date-icon.js
│ ├── input
│ │ ├── comment-list.js
│ │ ├── comment-list.module.css
│ │ ├── comments.js
│ │ ├── comments.module.css
│ │ ├── new-comment.js
│ │ ├── new-comment.module.css
│ │ ├── newsletter-registration.js
│ │ └── newsletter-registration.module.css
│ ├── layout
│ │ ├── layout.js
│ │ ├── main-header.js
│ │ └── main-header.module.css
│ └── ui
│ │ ├── button.js
│ │ ├── button.module.css
│ │ ├── error-alert.js
│ │ ├── error-alert.module.css
│ │ ├── notification.js
│ │ └── notification.module.css
├── dummy-data.js
├── helpers
│ ├── api-util.js
│ └── db-util.js
├── package.json
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── api
│ │ ├── comments
│ │ │ └── [eventId].js
│ │ └── newsletter.js
│ ├── events
│ │ ├── [...slug].js
│ │ ├── [eventId].js
│ │ └── index.js
│ └── index.js
├── public
│ ├── favicon.ico
│ ├── images
│ │ ├── coding-event.jpg
│ │ ├── extrovert-event.jpg
│ │ └── introvert-event.jpg
│ └── vercel.svg
├── screenshot.png
├── store
│ └── notification-context.js
├── styles
│ └── globals.css
└── yarn.lock
├── 02-blog
├── .gitignore
├── README.md
├── components
│ ├── contact
│ │ ├── contact-form.js
│ │ └── contact-form.module.css
│ ├── home-page
│ │ ├── featured-posts.js
│ │ ├── featured-posts.module.css
│ │ ├── hero.js
│ │ └── hero.module.css
│ ├── layout
│ │ ├── layout.js
│ │ ├── logo.js
│ │ ├── logo.module.css
│ │ ├── main-navigation.js
│ │ └── main-navigation.module.css
│ ├── posts
│ │ ├── all-posts.js
│ │ ├── all-posts.module.css
│ │ ├── post-detail
│ │ │ ├── post-content.js
│ │ │ ├── post-content.module.css
│ │ │ ├── post-header.js
│ │ │ └── post-header.module.css
│ │ ├── post-item.js
│ │ ├── post-item.module.css
│ │ ├── posts-grid.js
│ │ └── posts-grid.module.css
│ └── ui
│ │ ├── notification.js
│ │ └── notification.module.css
├── lib
│ └── posts-util.js
├── package.json
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── api
│ │ └── contact.js
│ ├── contact.js
│ ├── index.js
│ └── posts
│ │ ├── [slug].js
│ │ └── index.js
├── posts
│ ├── getting-started-with-nextjs.md
│ └── mastering-javascript.md
├── public
│ ├── favicon.ico
│ ├── images
│ │ ├── posts
│ │ │ ├── getting-started-with-nextjs
│ │ │ │ ├── getting-started-nextjs.png
│ │ │ │ └── nextjs-file-based-routing.png
│ │ │ └── mastering-javascript
│ │ │ │ └── mastering-js-thumb.png
│ │ └── site
│ │ │ └── dagny.jpg
│ └── vercel.svg
├── screenshot.png
├── styles
│ └── globals.css
└── yarn.lock
├── 03-dashboard
├── .gitignore
├── README.md
├── components
│ ├── auth
│ │ ├── auth-form.js
│ │ └── auth-form.module.css
│ ├── layout
│ │ ├── layout.js
│ │ ├── main-navigation.js
│ │ └── main-navigation.module.css
│ ├── profile
│ │ ├── profile-form.js
│ │ ├── profile-form.module.css
│ │ ├── user-profile.js
│ │ └── user-profile.module.css
│ └── starting-page
│ │ ├── starting-page.js
│ │ └── starting-page.module.css
├── lib
│ ├── auth.js
│ └── db.js
├── package.json
├── pages
│ ├── _app.js
│ ├── api
│ │ ├── auth
│ │ │ ├── [...nextauth].js
│ │ │ └── signup.js
│ │ └── user
│ │ │ └── change-password.js
│ ├── auth.js
│ ├── index.js
│ └── profile.js
├── public
│ ├── favicon.ico
│ └── vercel.svg
├── screenshot.png
├── styles
│ └── globals.css
└── yarn.lock
├── 04-reactmeetups
├── .gitignore
├── README.md
├── components
│ ├── layout
│ │ ├── Layout.js
│ │ ├── Layout.module.css
│ │ ├── MainNavigation.js
│ │ └── MainNavigation.module.css
│ ├── meetups
│ │ ├── MeetupDetail.js
│ │ ├── MeetupDetail.module.css
│ │ ├── MeetupItem.js
│ │ ├── MeetupItem.module.css
│ │ ├── MeetupList.js
│ │ ├── MeetupList.module.css
│ │ ├── NewMeetupForm.js
│ │ └── NewMeetupForm.module.css
│ └── ui
│ │ ├── Card.js
│ │ └── Card.module.css
├── package.json
├── pages
│ ├── [meetupId]
│ │ └── index.js
│ ├── _app.js
│ ├── api
│ │ └── new-meetup.js
│ ├── index.js
│ └── new-meetup
│ │ └── index.js
├── public
│ ├── favicon.ico
│ ├── images
│ │ ├── m1.jpg
│ │ └── m2.jpg
│ └── vercel.svg
├── screenshot.png
├── styles
│ └── globals.css
└── yarn.lock
├── 05-djevents
├── README.md
├── djevents-backend
│ ├── .editorconfig
│ ├── .eslintignore
│ ├── .eslintrc
│ ├── .gitignore
│ ├── README.md
│ ├── api
│ │ ├── .gitkeep
│ │ └── events
│ │ │ ├── config
│ │ │ └── routes.json
│ │ │ ├── controllers
│ │ │ └── events.js
│ │ │ ├── models
│ │ │ ├── events.js
│ │ │ └── events.settings.json
│ │ │ └── services
│ │ │ └── events.js
│ ├── config
│ │ ├── database.js
│ │ ├── env
│ │ │ └── production
│ │ │ │ ├── database.js
│ │ │ │ └── server.js
│ │ ├── functions
│ │ │ ├── bootstrap.js
│ │ │ ├── cron.js
│ │ │ └── responses
│ │ │ │ └── 404.js
│ │ ├── plugins.js
│ │ └── server.js
│ ├── extensions
│ │ ├── .gitkeep
│ │ └── users-permissions
│ │ │ ├── config
│ │ │ └── jwt.js
│ │ │ └── models
│ │ │ └── User.settings.json
│ ├── favicon.ico
│ ├── package.json
│ └── public
│ │ ├── robots.txt
│ │ └── uploads
│ │ └── .gitkeep
├── djevents-frontend
│ ├── .eslintrc
│ ├── .gitignore
│ ├── README.md
│ ├── components
│ │ ├── DashboardEvent.js
│ │ ├── EventItem.js
│ │ ├── EventMap.js
│ │ ├── Footer.js
│ │ ├── Header.js
│ │ ├── ImageUpload.js
│ │ ├── Layout.js
│ │ ├── Modal.js
│ │ ├── Pagination.js
│ │ ├── Search.js
│ │ └── Showcase.js
│ ├── config
│ │ └── index.js
│ ├── context
│ │ └── AuthContext.js
│ ├── helpers
│ │ └── index.js
│ ├── jsconfig.json
│ ├── next.config.js
│ ├── package-lock.json
│ ├── package.json
│ ├── pages
│ │ ├── 404.js
│ │ ├── _app.js
│ │ ├── _document.js
│ │ ├── about.js
│ │ ├── account
│ │ │ ├── dashboard.js
│ │ │ ├── login.js
│ │ │ └── register.js
│ │ ├── api
│ │ │ ├── events
│ │ │ │ ├── [slug].js
│ │ │ │ ├── data.json
│ │ │ │ └── index.js
│ │ │ ├── login.js
│ │ │ ├── logout.js
│ │ │ ├── register.js
│ │ │ └── user.js
│ │ ├── events
│ │ │ ├── [slug].js
│ │ │ ├── add.js
│ │ │ ├── edit
│ │ │ │ └── [id].js
│ │ │ ├── index.js
│ │ │ └── search.js
│ │ └── index.js
│ ├── public
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── event-default.png
│ │ │ ├── pin.svg
│ │ │ ├── sample
│ │ │ │ ├── event1.jpg
│ │ │ │ ├── event2.jpg
│ │ │ │ ├── event3.jpg
│ │ │ │ ├── event4.jpg
│ │ │ │ ├── event5.jpg
│ │ │ │ └── event6.jpg
│ │ │ └── showcase.jpg
│ │ └── vercel.svg
│ └── styles
│ │ ├── 404.module.css
│ │ ├── AuthForm.module.css
│ │ ├── Dashboard.module.css
│ │ ├── DashboardEvent.module.css
│ │ ├── Event.module.css
│ │ ├── EventItem.module.css
│ │ ├── Footer.module.css
│ │ ├── Form.module.css
│ │ ├── Header.module.css
│ │ ├── Layout.module.css
│ │ ├── Modal.module.css
│ │ ├── Search.module.css
│ │ ├── Showcase.module.css
│ │ └── globals.css
└── screenshot.png
├── 06-devspace
├── .eslintrc
├── .gitignore
├── .husky
│ └── pre-commit
├── README.md
├── cache
│ └── data.js
├── components
│ ├── CategoryLabel.js
│ ├── CategoryList.js
│ ├── Header.js
│ ├── Layout.js
│ ├── Pagination.js
│ ├── Post.js
│ ├── Search.js
│ └── SearchResults.js
├── config
│ └── index.js
├── jsconfig.json
├── lib
│ └── posts.js
├── next.config.js
├── package-lock.json
├── package.json
├── pages
│ ├── 404.js
│ ├── _app.js
│ ├── about.js
│ ├── api
│ │ └── search.js
│ ├── blog
│ │ ├── [slug].js
│ │ ├── category
│ │ │ └── [category_name].js
│ │ ├── index.js
│ │ └── page
│ │ │ └── [page_index].js
│ └── index.js
├── postcss.config.js
├── posts
│ ├── django-crash-course.md
│ ├── javascript-performance-tips.md
│ ├── manage-react-state-with-xstate.md
│ ├── new-in-php-8.md
│ ├── python-book-review.md
│ ├── react-crash-course.md
│ ├── tailwind-vs-bootstrap.md
│ └── writing-great-unit-tests.md
├── public
│ ├── favicon.ico
│ └── images
│ │ ├── logo.png
│ │ ├── posts
│ │ ├── img1.jpg
│ │ ├── img2.jpg
│ │ ├── img3.jpg
│ │ ├── img4.jpg
│ │ ├── img5.jpg
│ │ ├── img6.jpg
│ │ ├── img7.jpg
│ │ └── img8.jpg
│ │ └── search.svg
├── screenshot.png
├── scripts
│ └── cache.js
├── styles
│ └── globals.css
├── tailwind.config.js
└── utils
│ └── index.js
├── 07-property-pulse
├── .eslintrc.json
├── .gitignore
├── README.md
├── app
│ ├── api
│ │ ├── auth
│ │ │ └── [...nextauth]
│ │ │ │ └── route.ts
│ │ ├── bookmarks
│ │ │ ├── check
│ │ │ │ └── route.ts
│ │ │ └── route.ts
│ │ ├── messages
│ │ │ ├── [id]
│ │ │ │ └── route.ts
│ │ │ ├── route.ts
│ │ │ └── unread-count
│ │ │ │ └── route.ts
│ │ └── properties
│ │ │ ├── [id]
│ │ │ └── route.ts
│ │ │ ├── featured
│ │ │ └── route.ts
│ │ │ ├── route.ts
│ │ │ ├── search
│ │ │ └── route.ts
│ │ │ └── user
│ │ │ └── [userId]
│ │ │ └── route.ts
│ ├── favicon.ico
│ ├── layout.tsx
│ ├── loading.tsx
│ ├── messages
│ │ └── page.tsx
│ ├── not-found.tsx
│ ├── page.tsx
│ ├── profile
│ │ └── page.tsx
│ └── properties
│ │ ├── [id]
│ │ ├── edit
│ │ │ └── page.tsx
│ │ └── page.tsx
│ │ ├── add
│ │ └── page.tsx
│ │ ├── page.tsx
│ │ ├── saved
│ │ └── page.tsx
│ │ └── search-results
│ │ └── page.tsx
├── assets
│ ├── images
│ │ ├── logo-white.png
│ │ ├── logo.png
│ │ ├── pin.svg
│ │ └── profile.png
│ └── styles
│ │ └── globals.css
├── components
│ ├── AuthProvider.tsx
│ ├── BookmarkButton.tsx
│ ├── FeaturedProperties.tsx
│ ├── FeaturedPropertyCard.tsx
│ ├── Footer.tsx
│ ├── Hero.tsx
│ ├── HomeProperties.tsx
│ ├── InfoBox.tsx
│ ├── InfoBoxes.tsx
│ ├── Message.tsx
│ ├── Messages.tsx
│ ├── Navbar.tsx
│ ├── Pagination.tsx
│ ├── Properties.tsx
│ ├── PropertyAddForm.tsx
│ ├── PropertyCard.tsx
│ ├── PropertyContactForm.tsx
│ ├── PropertyDetails.tsx
│ ├── PropertyEditForm.tsx
│ ├── PropertyHeaderImage.tsx
│ ├── PropertyImages.tsx
│ ├── PropertyMap.tsx
│ ├── PropertySearchForm.tsx
│ ├── ShareButtons.tsx
│ ├── Spinner.tsx
│ └── UnreadMessageCount.tsx
├── config
│ ├── cloudinary.ts
│ └── database.ts
├── context
│ └── GlobalContext.tsx
├── middleware.ts
├── models
│ ├── Message.ts
│ ├── Property.ts
│ └── User.ts
├── next-auth.d.ts
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── properties.json
├── public
│ └── images
│ │ └── properties
│ │ ├── a1.jpg
│ │ ├── a2.jpg
│ │ ├── a3.jpg
│ │ ├── a4.jpg
│ │ ├── b1.jpg
│ │ ├── b2.jpg
│ │ ├── b3.jpg
│ │ ├── c1.jpg
│ │ ├── c2.jpg
│ │ ├── c3.jpg
│ │ ├── c4.jpg
│ │ ├── d1.jpg
│ │ ├── d2.jpg
│ │ ├── d3.jpg
│ │ ├── e1.jpg
│ │ ├── e2.jpg
│ │ ├── e3.jpg
│ │ ├── e4.jpg
│ │ ├── f1.jpg
│ │ ├── f2.jpg
│ │ ├── f3.jpg
│ │ ├── g1.jpg
│ │ ├── g2.jpg
│ │ ├── g3.jpg
│ │ ├── g4.jpg
│ │ ├── h1.jpg
│ │ ├── h2.jpg
│ │ ├── h3.jpg
│ │ ├── i1.jpg
│ │ ├── i2.jpg
│ │ ├── i3.jpg
│ │ ├── j1.jpg
│ │ ├── j2.jpg
│ │ └── j3.jpg
├── screenshot.png
├── tailwind.config.ts
├── tsconfig.json
└── utils
│ ├── authOptions.ts
│ ├── getSessionUser.ts
│ └── requests.ts
├── README.md
└── vercel.json
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: solygambas
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/.gitignore
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/.gitignore
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/README.md
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/package.json
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/404.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/404.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/_app.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/about.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/about.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/api/hello.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/api/hello.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/blog/[...slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/blog/[...slug].js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/clients/[id]/[clientprojectid].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/clients/[id]/[clientprojectid].js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/clients/[id]/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/clients/[id]/index.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/clients/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/clients/index.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/index.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/portfolio/[projectid].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/portfolio/[projectid].js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/portfolio/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/portfolio/index.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/pages/portfolio/list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/pages/portfolio/list.js
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/styles/globals.css
--------------------------------------------------------------------------------
/00-playground/03-file-based routing/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/03-file-based routing/yarn.lock
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/.gitignore
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/README.md
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/data/dummy-backend.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/data/dummy-backend.json
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/package.json
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/[pid].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/[pid].js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/_app.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/api/hello.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/api/hello.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/index.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/last-sales.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/last-sales.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/last-sales2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/last-sales2.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/last-sales3.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/last-sales3.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/user-profile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/user-profile.js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/pages/user/[uid].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/pages/user/[uid].js
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/styles/globals.css
--------------------------------------------------------------------------------
/00-playground/05-page pre-rendering and data fetching/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/05-page pre-rendering and data fetching/yarn.lock
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/.gitignore
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/README.md
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/data/feedback.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/data/feedback.json
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/dummy-data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/dummy-data.js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/package.json
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/pages/_app.js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/pages/api/feedback/[feedbackId].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/pages/api/feedback/[feedbackId].js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/pages/api/feedback/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/pages/api/feedback/index.js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/pages/feedback.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/pages/feedback.js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/pages/index.js
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/styles/globals.css
--------------------------------------------------------------------------------
/00-playground/08-adding backend code with API routes/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/08-adding backend code with API routes/yarn.lock
--------------------------------------------------------------------------------
/00-playground/09-jit-next/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/.gitignore
--------------------------------------------------------------------------------
/00-playground/09-jit-next/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/README.md
--------------------------------------------------------------------------------
/00-playground/09-jit-next/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/package-lock.json
--------------------------------------------------------------------------------
/00-playground/09-jit-next/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/package.json
--------------------------------------------------------------------------------
/00-playground/09-jit-next/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/pages/_app.js
--------------------------------------------------------------------------------
/00-playground/09-jit-next/pages/api/hello.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/pages/api/hello.js
--------------------------------------------------------------------------------
/00-playground/09-jit-next/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/pages/index.js
--------------------------------------------------------------------------------
/00-playground/09-jit-next/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/postcss.config.js
--------------------------------------------------------------------------------
/00-playground/09-jit-next/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/09-jit-next/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/09-jit-next/styles/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/styles/styles.css
--------------------------------------------------------------------------------
/00-playground/09-jit-next/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/09-jit-next/tailwind.config.js
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/.gitignore
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/README.md
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/machines/myFirstMachine.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/machines/myFirstMachine.ts
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/machines/todoAppMachine.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/machines/todoAppMachine.ts
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/machines/todoAppMachine.typegen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/machines/todoAppMachine.typegen.ts
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/next-env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/next-env.d.ts
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/next.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/next.config.js
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/package-lock.json
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/package.json
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/pages/_app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/pages/_app.tsx
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/pages/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/pages/index.tsx
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/screenshot.png
--------------------------------------------------------------------------------
/00-playground/10-todo-xstate/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/10-todo-xstate/tsconfig.json
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/.env:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/.env
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/.gitignore
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/README.md
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/globals.css
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/[issueId]/error.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/[issueId]/error.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/[issueId]/loading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/[issueId]/loading.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/[issueId]/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/[issueId]/page.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/layout.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/layout.module.css
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/layout.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/issues/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/issues/page.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/app/layout.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/app/page.tsx:
--------------------------------------------------------------------------------
1 | export default function Home() {
2 | return
The Starting Page
;
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/issues/IssueDetails.module.css:
--------------------------------------------------------------------------------
1 | .details {
2 | padding: 3rem;
3 | height: 100vh;
4 | }
5 |
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/issues/IssueDetails.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/components/issues/IssueDetails.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/issues/IssueListing.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/components/issues/IssueListing.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/issues/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/components/issues/types.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/ui/MainNavigation.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/components/ui/MainNavigation.module.css
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/components/ui/MainNavigation.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/components/ui/MainNavigation.tsx
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/next.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/next.config.js
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/package-lock.json
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/package.json
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/prisma/demo.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/prisma/demo.db
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/prisma/schema.prisma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/prisma/schema.prisma
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/prisma/seed.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/prisma/seed.ts
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/public/favicon.ico
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/screenshot.png
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/tsconfig.json
--------------------------------------------------------------------------------
/00-playground/11-nextjs-13-demo/util/time.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/11-nextjs-13-demo/util/time.ts
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/.gitignore
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/README.md
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/about/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/about/page.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/about/team/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/about/team/page.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/api/courses/data.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/api/courses/data.json
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/api/courses/route.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/api/courses/route.js
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/api/courses/search/route.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/api/courses/search/route.js
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/api/hello/route.js:
--------------------------------------------------------------------------------
1 | export async function GET(request) {
2 | return new Response("Hello, Next.js!");
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/code/repos/[name]/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/code/repos/[name]/page.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/code/repos/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/code/repos/page.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/components/CourseSearch.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/components/CourseSearch.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/components/Courses.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/components/Courses.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/components/Header.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/components/Header.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/components/Repo.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/components/Repo.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/components/RepoDirs.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/components/RepoDirs.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/favicon.ico
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/globals.css
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/layout.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/layout.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/loading.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/loading.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/app/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/app/page.jsx
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/jsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/jsconfig.json
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/next.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/next.config.mjs
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/package-lock.json
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/package.json
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/public/next.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/public/next.svg
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/12-dagny-media/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/12-dagny-media/screenshot.png
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/.gitignore
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/README.md
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/_data/db.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/_data/db.json
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/components/Navbar.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/components/Navbar.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/components/dojo-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/components/dojo-logo.png
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/favicon.ico
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/globals.css
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/layout.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/layout.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/not-found.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/not-found.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/page.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/TicketList.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/TicketList.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/[id]/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/[id]/page.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/create/CreateForm.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/create/CreateForm.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/create/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/create/page.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/loading.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/loading.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/not-found.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/not-found.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/app/tickets/page.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/app/tickets/page.jsx
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/jsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/jsconfig.json
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/next.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/next.config.mjs
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/package-lock.json
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/package.json
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/postcss.config.js
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/public/next.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/public/next.svg
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/screenshot.png
--------------------------------------------------------------------------------
/00-playground/13-dojo-helpdesk/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/13-dojo-helpdesk/tailwind.config.js
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/.gitignore
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/README.md
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/_data/db.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/_data/db.json
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/components.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/components.json
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/next.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/next.config.mjs
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/package-lock.json
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/package.json
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/postcss.config.js
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/chocolate_cookies.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/chocolate_cookies.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/grilled_mushrooms.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/grilled_mushrooms.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/mushroom_risotto.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/mushroom_risotto.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/roasted_veg_salad.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/roasted_veg_salad.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/veg_alfredo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/veg_alfredo.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/veg_lentil_soup.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/veg_lentil_soup.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/veg_stir_fry.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/veg_stir_fry.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/veggie_carbonara.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/veggie_carbonara.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/public/img/veggie_tacos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/public/img/veggie_tacos.jpg
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/screenshot.png
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/app/favicon.ico
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/app/globals.css
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/app/layout.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/app/loading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/app/loading.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/app/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/app/page.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/SkeletonCard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/SkeletonCard.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/ui/avatar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/ui/avatar.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/ui/badge.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/ui/badge.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/ui/button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/ui/button.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/ui/card.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/ui/card.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/components/ui/skeleton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/components/ui/skeleton.tsx
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/src/lib/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/src/lib/utils.ts
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/tailwind.config.ts
--------------------------------------------------------------------------------
/00-playground/14-ninja-recipes/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/14-ninja-recipes/tsconfig.json
--------------------------------------------------------------------------------
/00-playground/15-insightnest/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/00-playground/15-insightnest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/.gitignore
--------------------------------------------------------------------------------
/00-playground/15-insightnest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/README.md
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(auth)/auth/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(auth)/auth/page.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(auth)/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(auth)/layout.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(main)/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(main)/layout.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(main)/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(main)/page.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(main)/posts/edit/[id]/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(main)/posts/edit/[id]/page.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/(main)/posts/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/(main)/posts/page.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/favicon.ico
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/globals.css
--------------------------------------------------------------------------------
/00-playground/15-insightnest/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/app/layout.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components.json
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/BackButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/BackButton.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/Navbar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/Navbar.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/Sidebar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/Sidebar.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ThemeToggler.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ThemeToggler.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/auth/AuthTabs.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/auth/AuthTabs.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/auth/LoginForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/auth/LoginForm.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/auth/RegisterForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/auth/RegisterForm.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/dashboard/AnalyticsChart.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/dashboard/AnalyticsChart.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/dashboard/DashboardCard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/dashboard/DashboardCard.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/posts/PostsPagination.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/posts/PostsPagination.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/posts/PostsTable.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/posts/PostsTable.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/providers/ThemeProvider.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/providers/ThemeProvider.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/avatar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/avatar.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/button.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/card.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/card.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/command.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/command.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/dialog.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/dialog.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/dropdown-menu.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/dropdown-menu.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/form.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/form.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/input.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/input.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/label.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/label.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/pagination.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/pagination.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/table.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/table.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/tabs.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/tabs.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/textarea.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/textarea.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/toast.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/toast.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/toaster.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/toaster.tsx
--------------------------------------------------------------------------------
/00-playground/15-insightnest/components/ui/use-toast.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/components/ui/use-toast.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/data/analytics.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/data/analytics.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/data/posts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/data/posts.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/img/logo.png
--------------------------------------------------------------------------------
/00-playground/15-insightnest/lib/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/lib/utils.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/next.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/next.config.mjs
--------------------------------------------------------------------------------
/00-playground/15-insightnest/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/package-lock.json
--------------------------------------------------------------------------------
/00-playground/15-insightnest/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/package.json
--------------------------------------------------------------------------------
/00-playground/15-insightnest/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/postcss.config.mjs
--------------------------------------------------------------------------------
/00-playground/15-insightnest/public/next.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/public/next.svg
--------------------------------------------------------------------------------
/00-playground/15-insightnest/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/public/vercel.svg
--------------------------------------------------------------------------------
/00-playground/15-insightnest/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/screenshot.png
--------------------------------------------------------------------------------
/00-playground/15-insightnest/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/tailwind.config.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/tsconfig.json
--------------------------------------------------------------------------------
/00-playground/15-insightnest/types/analytics.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/types/analytics.ts
--------------------------------------------------------------------------------
/00-playground/15-insightnest/types/posts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/00-playground/15-insightnest/types/posts.ts
--------------------------------------------------------------------------------
/01-nextevents/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/.gitignore
--------------------------------------------------------------------------------
/01-nextevents/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/README.md
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-content.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-content.js
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-content.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-content.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-logistics.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-logistics.js
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-logistics.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-logistics.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-summary.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-summary.js
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/event-summary.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/event-summary.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/logistics-item.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/logistics-item.js
--------------------------------------------------------------------------------
/01-nextevents/components/event-detail/logistics-item.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/event-detail/logistics-item.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/events/event-item.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/event-item.js
--------------------------------------------------------------------------------
/01-nextevents/components/events/event-item.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/event-item.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/events/event-list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/event-list.js
--------------------------------------------------------------------------------
/01-nextevents/components/events/event-list.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/event-list.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/events/events-search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/events-search.js
--------------------------------------------------------------------------------
/01-nextevents/components/events/events-search.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/events-search.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/events/results-title.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/results-title.js
--------------------------------------------------------------------------------
/01-nextevents/components/events/results-title.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/events/results-title.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/icons/address-icon.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/icons/address-icon.js
--------------------------------------------------------------------------------
/01-nextevents/components/icons/arrow-right-icon.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/icons/arrow-right-icon.js
--------------------------------------------------------------------------------
/01-nextevents/components/icons/date-icon.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/icons/date-icon.js
--------------------------------------------------------------------------------
/01-nextevents/components/input/comment-list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/comment-list.js
--------------------------------------------------------------------------------
/01-nextevents/components/input/comment-list.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/comment-list.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/input/comments.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/comments.js
--------------------------------------------------------------------------------
/01-nextevents/components/input/comments.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/comments.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/input/new-comment.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/new-comment.js
--------------------------------------------------------------------------------
/01-nextevents/components/input/new-comment.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/new-comment.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/input/newsletter-registration.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/newsletter-registration.js
--------------------------------------------------------------------------------
/01-nextevents/components/input/newsletter-registration.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/input/newsletter-registration.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/layout/layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/layout/layout.js
--------------------------------------------------------------------------------
/01-nextevents/components/layout/main-header.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/layout/main-header.js
--------------------------------------------------------------------------------
/01-nextevents/components/layout/main-header.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/layout/main-header.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/ui/button.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/button.js
--------------------------------------------------------------------------------
/01-nextevents/components/ui/button.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/button.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/ui/error-alert.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/error-alert.js
--------------------------------------------------------------------------------
/01-nextevents/components/ui/error-alert.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/error-alert.module.css
--------------------------------------------------------------------------------
/01-nextevents/components/ui/notification.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/notification.js
--------------------------------------------------------------------------------
/01-nextevents/components/ui/notification.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/components/ui/notification.module.css
--------------------------------------------------------------------------------
/01-nextevents/dummy-data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/dummy-data.js
--------------------------------------------------------------------------------
/01-nextevents/helpers/api-util.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/helpers/api-util.js
--------------------------------------------------------------------------------
/01-nextevents/helpers/db-util.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/helpers/db-util.js
--------------------------------------------------------------------------------
/01-nextevents/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/package.json
--------------------------------------------------------------------------------
/01-nextevents/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/_app.js
--------------------------------------------------------------------------------
/01-nextevents/pages/_document.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/_document.js
--------------------------------------------------------------------------------
/01-nextevents/pages/api/comments/[eventId].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/api/comments/[eventId].js
--------------------------------------------------------------------------------
/01-nextevents/pages/api/newsletter.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/api/newsletter.js
--------------------------------------------------------------------------------
/01-nextevents/pages/events/[...slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/events/[...slug].js
--------------------------------------------------------------------------------
/01-nextevents/pages/events/[eventId].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/events/[eventId].js
--------------------------------------------------------------------------------
/01-nextevents/pages/events/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/events/index.js
--------------------------------------------------------------------------------
/01-nextevents/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/pages/index.js
--------------------------------------------------------------------------------
/01-nextevents/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/public/favicon.ico
--------------------------------------------------------------------------------
/01-nextevents/public/images/coding-event.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/public/images/coding-event.jpg
--------------------------------------------------------------------------------
/01-nextevents/public/images/extrovert-event.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/public/images/extrovert-event.jpg
--------------------------------------------------------------------------------
/01-nextevents/public/images/introvert-event.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/public/images/introvert-event.jpg
--------------------------------------------------------------------------------
/01-nextevents/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/public/vercel.svg
--------------------------------------------------------------------------------
/01-nextevents/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/screenshot.png
--------------------------------------------------------------------------------
/01-nextevents/store/notification-context.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/store/notification-context.js
--------------------------------------------------------------------------------
/01-nextevents/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/styles/globals.css
--------------------------------------------------------------------------------
/01-nextevents/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/01-nextevents/yarn.lock
--------------------------------------------------------------------------------
/02-blog/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/.gitignore
--------------------------------------------------------------------------------
/02-blog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/README.md
--------------------------------------------------------------------------------
/02-blog/components/contact/contact-form.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/contact/contact-form.js
--------------------------------------------------------------------------------
/02-blog/components/contact/contact-form.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/contact/contact-form.module.css
--------------------------------------------------------------------------------
/02-blog/components/home-page/featured-posts.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/home-page/featured-posts.js
--------------------------------------------------------------------------------
/02-blog/components/home-page/featured-posts.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/home-page/featured-posts.module.css
--------------------------------------------------------------------------------
/02-blog/components/home-page/hero.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/home-page/hero.js
--------------------------------------------------------------------------------
/02-blog/components/home-page/hero.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/home-page/hero.module.css
--------------------------------------------------------------------------------
/02-blog/components/layout/layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/layout/layout.js
--------------------------------------------------------------------------------
/02-blog/components/layout/logo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/layout/logo.js
--------------------------------------------------------------------------------
/02-blog/components/layout/logo.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/layout/logo.module.css
--------------------------------------------------------------------------------
/02-blog/components/layout/main-navigation.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/layout/main-navigation.js
--------------------------------------------------------------------------------
/02-blog/components/layout/main-navigation.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/layout/main-navigation.module.css
--------------------------------------------------------------------------------
/02-blog/components/posts/all-posts.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/all-posts.js
--------------------------------------------------------------------------------
/02-blog/components/posts/all-posts.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/all-posts.module.css
--------------------------------------------------------------------------------
/02-blog/components/posts/post-detail/post-content.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-detail/post-content.js
--------------------------------------------------------------------------------
/02-blog/components/posts/post-detail/post-content.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-detail/post-content.module.css
--------------------------------------------------------------------------------
/02-blog/components/posts/post-detail/post-header.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-detail/post-header.js
--------------------------------------------------------------------------------
/02-blog/components/posts/post-detail/post-header.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-detail/post-header.module.css
--------------------------------------------------------------------------------
/02-blog/components/posts/post-item.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-item.js
--------------------------------------------------------------------------------
/02-blog/components/posts/post-item.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/post-item.module.css
--------------------------------------------------------------------------------
/02-blog/components/posts/posts-grid.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/posts-grid.js
--------------------------------------------------------------------------------
/02-blog/components/posts/posts-grid.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/posts/posts-grid.module.css
--------------------------------------------------------------------------------
/02-blog/components/ui/notification.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/ui/notification.js
--------------------------------------------------------------------------------
/02-blog/components/ui/notification.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/components/ui/notification.module.css
--------------------------------------------------------------------------------
/02-blog/lib/posts-util.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/lib/posts-util.js
--------------------------------------------------------------------------------
/02-blog/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/package.json
--------------------------------------------------------------------------------
/02-blog/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/_app.js
--------------------------------------------------------------------------------
/02-blog/pages/_document.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/_document.js
--------------------------------------------------------------------------------
/02-blog/pages/api/contact.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/api/contact.js
--------------------------------------------------------------------------------
/02-blog/pages/contact.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/contact.js
--------------------------------------------------------------------------------
/02-blog/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/index.js
--------------------------------------------------------------------------------
/02-blog/pages/posts/[slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/posts/[slug].js
--------------------------------------------------------------------------------
/02-blog/pages/posts/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/pages/posts/index.js
--------------------------------------------------------------------------------
/02-blog/posts/getting-started-with-nextjs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/posts/getting-started-with-nextjs.md
--------------------------------------------------------------------------------
/02-blog/posts/mastering-javascript.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/posts/mastering-javascript.md
--------------------------------------------------------------------------------
/02-blog/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/favicon.ico
--------------------------------------------------------------------------------
/02-blog/public/images/posts/getting-started-with-nextjs/getting-started-nextjs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/images/posts/getting-started-with-nextjs/getting-started-nextjs.png
--------------------------------------------------------------------------------
/02-blog/public/images/posts/getting-started-with-nextjs/nextjs-file-based-routing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/images/posts/getting-started-with-nextjs/nextjs-file-based-routing.png
--------------------------------------------------------------------------------
/02-blog/public/images/posts/mastering-javascript/mastering-js-thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/images/posts/mastering-javascript/mastering-js-thumb.png
--------------------------------------------------------------------------------
/02-blog/public/images/site/dagny.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/images/site/dagny.jpg
--------------------------------------------------------------------------------
/02-blog/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/public/vercel.svg
--------------------------------------------------------------------------------
/02-blog/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/screenshot.png
--------------------------------------------------------------------------------
/02-blog/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/styles/globals.css
--------------------------------------------------------------------------------
/02-blog/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/02-blog/yarn.lock
--------------------------------------------------------------------------------
/03-dashboard/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/.gitignore
--------------------------------------------------------------------------------
/03-dashboard/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/README.md
--------------------------------------------------------------------------------
/03-dashboard/components/auth/auth-form.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/auth/auth-form.js
--------------------------------------------------------------------------------
/03-dashboard/components/auth/auth-form.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/auth/auth-form.module.css
--------------------------------------------------------------------------------
/03-dashboard/components/layout/layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/layout/layout.js
--------------------------------------------------------------------------------
/03-dashboard/components/layout/main-navigation.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/layout/main-navigation.js
--------------------------------------------------------------------------------
/03-dashboard/components/layout/main-navigation.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/layout/main-navigation.module.css
--------------------------------------------------------------------------------
/03-dashboard/components/profile/profile-form.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/profile/profile-form.js
--------------------------------------------------------------------------------
/03-dashboard/components/profile/profile-form.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/profile/profile-form.module.css
--------------------------------------------------------------------------------
/03-dashboard/components/profile/user-profile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/profile/user-profile.js
--------------------------------------------------------------------------------
/03-dashboard/components/profile/user-profile.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/profile/user-profile.module.css
--------------------------------------------------------------------------------
/03-dashboard/components/starting-page/starting-page.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/starting-page/starting-page.js
--------------------------------------------------------------------------------
/03-dashboard/components/starting-page/starting-page.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/components/starting-page/starting-page.module.css
--------------------------------------------------------------------------------
/03-dashboard/lib/auth.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/lib/auth.js
--------------------------------------------------------------------------------
/03-dashboard/lib/db.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/lib/db.js
--------------------------------------------------------------------------------
/03-dashboard/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/package.json
--------------------------------------------------------------------------------
/03-dashboard/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/_app.js
--------------------------------------------------------------------------------
/03-dashboard/pages/api/auth/[...nextauth].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/api/auth/[...nextauth].js
--------------------------------------------------------------------------------
/03-dashboard/pages/api/auth/signup.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/api/auth/signup.js
--------------------------------------------------------------------------------
/03-dashboard/pages/api/user/change-password.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/api/user/change-password.js
--------------------------------------------------------------------------------
/03-dashboard/pages/auth.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/auth.js
--------------------------------------------------------------------------------
/03-dashboard/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/index.js
--------------------------------------------------------------------------------
/03-dashboard/pages/profile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/pages/profile.js
--------------------------------------------------------------------------------
/03-dashboard/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/public/favicon.ico
--------------------------------------------------------------------------------
/03-dashboard/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/public/vercel.svg
--------------------------------------------------------------------------------
/03-dashboard/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/screenshot.png
--------------------------------------------------------------------------------
/03-dashboard/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/styles/globals.css
--------------------------------------------------------------------------------
/03-dashboard/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/03-dashboard/yarn.lock
--------------------------------------------------------------------------------
/04-reactmeetups/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/.gitignore
--------------------------------------------------------------------------------
/04-reactmeetups/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/README.md
--------------------------------------------------------------------------------
/04-reactmeetups/components/layout/Layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/layout/Layout.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/layout/Layout.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/layout/Layout.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/layout/MainNavigation.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/layout/MainNavigation.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/layout/MainNavigation.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/layout/MainNavigation.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupDetail.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupDetail.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupDetail.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupDetail.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupItem.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupItem.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupItem.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupItem.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupList.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupList.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/MeetupList.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/MeetupList.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/NewMeetupForm.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/NewMeetupForm.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/meetups/NewMeetupForm.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/meetups/NewMeetupForm.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/components/ui/Card.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/ui/Card.js
--------------------------------------------------------------------------------
/04-reactmeetups/components/ui/Card.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/components/ui/Card.module.css
--------------------------------------------------------------------------------
/04-reactmeetups/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/package.json
--------------------------------------------------------------------------------
/04-reactmeetups/pages/[meetupId]/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/pages/[meetupId]/index.js
--------------------------------------------------------------------------------
/04-reactmeetups/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/pages/_app.js
--------------------------------------------------------------------------------
/04-reactmeetups/pages/api/new-meetup.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/pages/api/new-meetup.js
--------------------------------------------------------------------------------
/04-reactmeetups/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/pages/index.js
--------------------------------------------------------------------------------
/04-reactmeetups/pages/new-meetup/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/pages/new-meetup/index.js
--------------------------------------------------------------------------------
/04-reactmeetups/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/public/favicon.ico
--------------------------------------------------------------------------------
/04-reactmeetups/public/images/m1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/public/images/m1.jpg
--------------------------------------------------------------------------------
/04-reactmeetups/public/images/m2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/public/images/m2.jpg
--------------------------------------------------------------------------------
/04-reactmeetups/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/public/vercel.svg
--------------------------------------------------------------------------------
/04-reactmeetups/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/screenshot.png
--------------------------------------------------------------------------------
/04-reactmeetups/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/styles/globals.css
--------------------------------------------------------------------------------
/04-reactmeetups/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/04-reactmeetups/yarn.lock
--------------------------------------------------------------------------------
/05-djevents/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/README.md
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/.editorconfig
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/.eslintignore:
--------------------------------------------------------------------------------
1 | .cache
2 | build
3 | **/node_modules/**
4 |
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/.eslintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/.eslintrc
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/.gitignore
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/README.md
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/events/config/routes.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/api/events/config/routes.json
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/events/controllers/events.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/api/events/controllers/events.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/events/models/events.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/api/events/models/events.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/events/models/events.settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/api/events/models/events.settings.json
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/api/events/services/events.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/api/events/services/events.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/database.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/database.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/env/production/database.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/env/production/database.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/env/production/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/env/production/server.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/functions/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/functions/bootstrap.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/functions/cron.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/functions/cron.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/functions/responses/404.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/functions/responses/404.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/plugins.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/plugins.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/config/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/config/server.js
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/extensions/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/extensions/users-permissions/config/jwt.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | jwtSecret: process.env.JWT_SECRET || '581aa296-c3cc-4263-988d-abd0e4eb10d7'
3 | };
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/extensions/users-permissions/models/User.settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/extensions/users-permissions/models/User.settings.json
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/favicon.ico
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/package.json
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-backend/public/robots.txt
--------------------------------------------------------------------------------
/05-djevents/djevents-backend/public/uploads/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/.eslintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/.eslintrc
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/.gitignore
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/README.md
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/DashboardEvent.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/DashboardEvent.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/EventItem.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/EventItem.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/EventMap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/EventMap.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Footer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Footer.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Header.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Header.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/ImageUpload.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/ImageUpload.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Layout.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Modal.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Modal.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Pagination.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Pagination.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Search.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/components/Showcase.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/components/Showcase.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/config/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/config/index.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/context/AuthContext.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/context/AuthContext.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/helpers/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/helpers/index.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/jsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/jsconfig.json
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/next.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/next.config.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/package-lock.json
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/package.json
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/404.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/404.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/_app.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/_document.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/_document.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/about.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/about.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/account/dashboard.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/account/dashboard.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/account/login.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/account/login.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/account/register.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/account/register.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/events/[slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/events/[slug].js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/events/data.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/events/data.json
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/events/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/events/index.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/login.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/login.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/logout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/logout.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/register.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/register.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/api/user.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/api/user.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/events/[slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/events/[slug].js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/events/add.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/events/add.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/events/edit/[id].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/events/edit/[id].js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/events/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/events/index.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/events/search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/events/search.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/pages/index.js
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/favicon.ico
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/event-default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/event-default.png
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/pin.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/pin.svg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event1.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event2.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event3.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event4.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event5.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/sample/event6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/sample/event6.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/images/showcase.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/images/showcase.jpg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/public/vercel.svg
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/404.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/404.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/AuthForm.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/AuthForm.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Dashboard.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Dashboard.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/DashboardEvent.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/DashboardEvent.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Event.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Event.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/EventItem.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/EventItem.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Footer.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Footer.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Form.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Form.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Header.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Header.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Layout.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Layout.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Modal.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Modal.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Search.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Search.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/Showcase.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/Showcase.module.css
--------------------------------------------------------------------------------
/05-djevents/djevents-frontend/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/djevents-frontend/styles/globals.css
--------------------------------------------------------------------------------
/05-djevents/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/05-djevents/screenshot.png
--------------------------------------------------------------------------------
/06-devspace/.eslintrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/.eslintrc
--------------------------------------------------------------------------------
/06-devspace/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/.gitignore
--------------------------------------------------------------------------------
/06-devspace/.husky/pre-commit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/.husky/pre-commit
--------------------------------------------------------------------------------
/06-devspace/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/README.md
--------------------------------------------------------------------------------
/06-devspace/cache/data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/cache/data.js
--------------------------------------------------------------------------------
/06-devspace/components/CategoryLabel.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/CategoryLabel.js
--------------------------------------------------------------------------------
/06-devspace/components/CategoryList.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/CategoryList.js
--------------------------------------------------------------------------------
/06-devspace/components/Header.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/Header.js
--------------------------------------------------------------------------------
/06-devspace/components/Layout.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/Layout.js
--------------------------------------------------------------------------------
/06-devspace/components/Pagination.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/Pagination.js
--------------------------------------------------------------------------------
/06-devspace/components/Post.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/Post.js
--------------------------------------------------------------------------------
/06-devspace/components/Search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/Search.js
--------------------------------------------------------------------------------
/06-devspace/components/SearchResults.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/components/SearchResults.js
--------------------------------------------------------------------------------
/06-devspace/config/index.js:
--------------------------------------------------------------------------------
1 | export const POSTS_PER_PAGE = 6;
2 |
--------------------------------------------------------------------------------
/06-devspace/jsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/jsconfig.json
--------------------------------------------------------------------------------
/06-devspace/lib/posts.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/lib/posts.js
--------------------------------------------------------------------------------
/06-devspace/next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | reactStrictMode: true,
3 | }
4 |
--------------------------------------------------------------------------------
/06-devspace/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/package-lock.json
--------------------------------------------------------------------------------
/06-devspace/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/package.json
--------------------------------------------------------------------------------
/06-devspace/pages/404.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/404.js
--------------------------------------------------------------------------------
/06-devspace/pages/_app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/_app.js
--------------------------------------------------------------------------------
/06-devspace/pages/about.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/about.js
--------------------------------------------------------------------------------
/06-devspace/pages/api/search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/api/search.js
--------------------------------------------------------------------------------
/06-devspace/pages/blog/[slug].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/blog/[slug].js
--------------------------------------------------------------------------------
/06-devspace/pages/blog/category/[category_name].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/blog/category/[category_name].js
--------------------------------------------------------------------------------
/06-devspace/pages/blog/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/blog/index.js
--------------------------------------------------------------------------------
/06-devspace/pages/blog/page/[page_index].js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/blog/page/[page_index].js
--------------------------------------------------------------------------------
/06-devspace/pages/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/pages/index.js
--------------------------------------------------------------------------------
/06-devspace/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/postcss.config.js
--------------------------------------------------------------------------------
/06-devspace/posts/django-crash-course.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/django-crash-course.md
--------------------------------------------------------------------------------
/06-devspace/posts/javascript-performance-tips.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/javascript-performance-tips.md
--------------------------------------------------------------------------------
/06-devspace/posts/manage-react-state-with-xstate.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/manage-react-state-with-xstate.md
--------------------------------------------------------------------------------
/06-devspace/posts/new-in-php-8.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/new-in-php-8.md
--------------------------------------------------------------------------------
/06-devspace/posts/python-book-review.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/python-book-review.md
--------------------------------------------------------------------------------
/06-devspace/posts/react-crash-course.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/react-crash-course.md
--------------------------------------------------------------------------------
/06-devspace/posts/tailwind-vs-bootstrap.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/tailwind-vs-bootstrap.md
--------------------------------------------------------------------------------
/06-devspace/posts/writing-great-unit-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/posts/writing-great-unit-tests.md
--------------------------------------------------------------------------------
/06-devspace/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/favicon.ico
--------------------------------------------------------------------------------
/06-devspace/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/logo.png
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img1.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img2.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img3.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img4.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img5.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img6.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img7.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/posts/img8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/posts/img8.jpg
--------------------------------------------------------------------------------
/06-devspace/public/images/search.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/public/images/search.svg
--------------------------------------------------------------------------------
/06-devspace/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/screenshot.png
--------------------------------------------------------------------------------
/06-devspace/scripts/cache.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/scripts/cache.js
--------------------------------------------------------------------------------
/06-devspace/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/styles/globals.css
--------------------------------------------------------------------------------
/06-devspace/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/tailwind.config.js
--------------------------------------------------------------------------------
/06-devspace/utils/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/06-devspace/utils/index.js
--------------------------------------------------------------------------------
/07-property-pulse/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/07-property-pulse/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/.gitignore
--------------------------------------------------------------------------------
/07-property-pulse/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/README.md
--------------------------------------------------------------------------------
/07-property-pulse/app/api/auth/[...nextauth]/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/auth/[...nextauth]/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/bookmarks/check/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/bookmarks/check/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/bookmarks/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/bookmarks/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/messages/[id]/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/messages/[id]/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/messages/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/messages/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/messages/unread-count/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/messages/unread-count/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/properties/[id]/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/properties/[id]/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/properties/featured/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/properties/featured/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/properties/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/properties/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/properties/search/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/properties/search/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/api/properties/user/[userId]/route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/api/properties/user/[userId]/route.ts
--------------------------------------------------------------------------------
/07-property-pulse/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/favicon.ico
--------------------------------------------------------------------------------
/07-property-pulse/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/layout.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/loading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/loading.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/messages/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/messages/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/not-found.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/not-found.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/profile/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/profile/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/[id]/edit/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/[id]/edit/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/[id]/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/[id]/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/add/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/add/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/saved/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/saved/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/app/properties/search-results/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/app/properties/search-results/page.tsx
--------------------------------------------------------------------------------
/07-property-pulse/assets/images/logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/assets/images/logo-white.png
--------------------------------------------------------------------------------
/07-property-pulse/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/assets/images/logo.png
--------------------------------------------------------------------------------
/07-property-pulse/assets/images/pin.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/assets/images/pin.svg
--------------------------------------------------------------------------------
/07-property-pulse/assets/images/profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/assets/images/profile.png
--------------------------------------------------------------------------------
/07-property-pulse/assets/styles/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/assets/styles/globals.css
--------------------------------------------------------------------------------
/07-property-pulse/components/AuthProvider.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/AuthProvider.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/BookmarkButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/BookmarkButton.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/FeaturedProperties.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/FeaturedProperties.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/FeaturedPropertyCard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/FeaturedPropertyCard.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Footer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Footer.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Hero.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Hero.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/HomeProperties.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/HomeProperties.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/InfoBox.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/InfoBox.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/InfoBoxes.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/InfoBoxes.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Message.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Message.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Messages.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Messages.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Navbar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Navbar.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Pagination.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Pagination.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Properties.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Properties.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyAddForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyAddForm.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyCard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyCard.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyContactForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyContactForm.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyDetails.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyDetails.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyEditForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyEditForm.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyHeaderImage.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyHeaderImage.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyImages.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyImages.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertyMap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertyMap.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/PropertySearchForm.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/PropertySearchForm.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/ShareButtons.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/ShareButtons.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/Spinner.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/Spinner.tsx
--------------------------------------------------------------------------------
/07-property-pulse/components/UnreadMessageCount.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/components/UnreadMessageCount.tsx
--------------------------------------------------------------------------------
/07-property-pulse/config/cloudinary.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/config/cloudinary.ts
--------------------------------------------------------------------------------
/07-property-pulse/config/database.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/config/database.ts
--------------------------------------------------------------------------------
/07-property-pulse/context/GlobalContext.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/context/GlobalContext.tsx
--------------------------------------------------------------------------------
/07-property-pulse/middleware.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/middleware.ts
--------------------------------------------------------------------------------
/07-property-pulse/models/Message.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/models/Message.ts
--------------------------------------------------------------------------------
/07-property-pulse/models/Property.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/models/Property.ts
--------------------------------------------------------------------------------
/07-property-pulse/models/User.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/models/User.ts
--------------------------------------------------------------------------------
/07-property-pulse/next-auth.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/next-auth.d.ts
--------------------------------------------------------------------------------
/07-property-pulse/next.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/next.config.mjs
--------------------------------------------------------------------------------
/07-property-pulse/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/package-lock.json
--------------------------------------------------------------------------------
/07-property-pulse/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/package.json
--------------------------------------------------------------------------------
/07-property-pulse/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/postcss.config.mjs
--------------------------------------------------------------------------------
/07-property-pulse/properties.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/properties.json
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/a1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/a1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/a2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/a3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/a3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/a4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/a4.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/b1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/b1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/b2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/b2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/b3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/b3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/c1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/c2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/c3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/c4.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/d1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/d1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/d2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/d2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/d3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/d3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/e1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/e1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/e2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/e2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/e3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/e3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/e4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/e4.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/f1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/f1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/f2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/f2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/f3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/f3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/g1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/g1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/g2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/g2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/g3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/g3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/g4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/g4.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/h1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/h1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/h2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/h2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/h3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/h3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/i1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/i1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/i2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/i2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/i3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/i3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/j1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/j1.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/j2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/j2.jpg
--------------------------------------------------------------------------------
/07-property-pulse/public/images/properties/j3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/public/images/properties/j3.jpg
--------------------------------------------------------------------------------
/07-property-pulse/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/screenshot.png
--------------------------------------------------------------------------------
/07-property-pulse/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/tailwind.config.ts
--------------------------------------------------------------------------------
/07-property-pulse/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/tsconfig.json
--------------------------------------------------------------------------------
/07-property-pulse/utils/authOptions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/utils/authOptions.ts
--------------------------------------------------------------------------------
/07-property-pulse/utils/getSessionUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/utils/getSessionUser.ts
--------------------------------------------------------------------------------
/07-property-pulse/utils/requests.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/07-property-pulse/utils/requests.ts
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/README.md
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/GoldStar0103/next-projects/HEAD/vercel.json
--------------------------------------------------------------------------------