-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from nyomansunima/refactor/redesign
update the structure and data fetching
- Loading branch information
Showing
68 changed files
with
342 additions
and
1,334 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,34 +14,26 @@ | |
}, | ||
"dependencies": { | ||
"@flaticon/flaticon-uicons": "^3.3.1", | ||
"@hookform/resolvers": "^3.9.0", | ||
"@radix-ui/react-accordion": "^1.2.0", | ||
"@radix-ui/react-hover-card": "^1.1.1", | ||
"@radix-ui/react-label": "^2.1.0", | ||
"@radix-ui/react-slot": "^1.1.0", | ||
"@radix-ui/react-tooltip": "^1.1.2", | ||
"@tailwindcss/forms": "^0.5.9", | ||
"@tanstack/react-query": "^5.62.0", | ||
"@vercel/analytics": "^1.3.1", | ||
"class-variance-authority": "^0.7.0", | ||
"clsx": "^2.1.1", | ||
"date-fns": "^4.1.0", | ||
"lenis": "^1.1.6", | ||
"next": "15.0.3", | ||
"next-mdx-remote-client": "^1.0.3", | ||
"next-themes": "^0.4.3", | ||
"posthog-js": "^1.194.0", | ||
"react": "19.0.0-rc.1", | ||
"react-dom": "19.0.0-rc.1", | ||
"react-hook-form": "^7.52.2", | ||
"sonner": "^1.5.0", | ||
"tailwind-merge": "^2.4.0", | ||
"tailwindcss-animate": "^1.0.7", | ||
"zod": "^3.23.8" | ||
"tailwind-merge": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"@tailwindcss/forms": "^0.5.9", | ||
"@tailwindcss/typography": "^0.5.13", | ||
"@tanstack/react-query-devtools": "^5.62.0", | ||
"@types/node": "^22", | ||
"@types/react": "npm:[email protected]", | ||
"@types/react-dom": "npm:[email protected]", | ||
|
@@ -52,6 +44,7 @@ | |
"postcss": "^8", | ||
"prettier": "^3.3.3", | ||
"tailwindcss": "^3", | ||
"tailwindcss-animate": "^1.0.7", | ||
"typescript": "^5" | ||
}, | ||
"overrides": { | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import config from '@shared/libs/config' | ||
import { MetadataRoute } from 'next' | ||
|
||
const BASE_URL = config.app.host | ||
|
||
export default function sitemap(): MetadataRoute.Sitemap { | ||
return [ | ||
{ | ||
url: `${BASE_URL}`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/contact`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/about`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/terms`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/privacy`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/crafts`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/journeys`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/stories`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/terms`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
{ | ||
url: `${BASE_URL}/works`, | ||
lastModified: new Date().toISOString(), | ||
}, | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.