Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrated project from pages to app router #380

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3de41ff
migrate: remove pages/_app.tsx & pages/_document.tsx, added app/layou…
zoosphar Jan 11, 2024
a77ebc6
migrate: update next.config.js and tsconfig.json
zoosphar Jan 11, 2024
7d252a0
migrate: rename src/pages/index.tsx -> src/app/page.tsx
zoosphar Jan 11, 2024
90ca39b
migrate: customAppInit for app initialization with required styles an…
zoosphar Jan 11, 2024
3267c01
migrate: new error handling file app/not-found.tsx
zoosphar Jan 11, 2024
69d3ae3
migrate: update useRouter import from next/router to next/navigation
zoosphar Jan 11, 2024
4c39339
further replace next/router with next/navigation
zoosphar Jan 22, 2024
a1d25cf
migrate all routes from pages to app router
zoosphar Jan 22, 2024
9b180f5
add missing impl package
zoosphar Jan 22, 2024
2a44335
make undefined a fallback type for 'json' query param
zoosphar Jan 23, 2024
cc3d382
update metadataBase property in layout metadata export
zoosphar Jan 23, 2024
4fabc6e
minor fix in chechEditorSession function call
zoosphar Jan 23, 2024
99bd413
feat: move toast to bottom right
AykutSarac Jan 13, 2024
231a3e9
chore: update meta tag
AykutSarac Jan 13, 2024
f276932
feat: update meta description
AykutSarac Jan 15, 2024
4eba0dc
feat: enable ai
AykutSarac Jan 19, 2024
6ea0dea
installed lodash
zoosphar Jan 23, 2024
a055738
update metadata content in layout.tsx
zoosphar Jan 28, 2024
471d7b2
Update layout.tsx
zoosphar Jan 31, 2024
7f2cf0e
Merge branch 'main' into migration-to-app-router-ZPHR
AykutSarac Feb 3, 2024
2402e81
fix: pages.tsx
AykutSarac Feb 3, 2024
3979d73
fix: sign-in page.tsx
AykutSarac Feb 3, 2024
e234db0
feat: lazy load adapter libs
AykutSarac Feb 3, 2024
3ac83b1
Merge branch 'main' into migration-to-app-router-ZPHR
AykutSarac Feb 3, 2024
815e4ba
fix: update components
AykutSarac Feb 3, 2024
b4f9a08
chore: update deps & add next lint
AykutSarac Feb 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Expand Up @@ -10,9 +10,9 @@ export const metadata: Metadata = {
icon: "/favicon.ico",
},
description:
"Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML, CSV and more, into interactive graphs.",
"Innovative and open-source visualization application that produces interactive graphs from various data formats, such as JSON, YAML, XML, CSV and more.",
openGraph: {
title: "JSON Crack - Visualize Data to Graphs",
title: "JSON Crack - Visualize Data as Graphs",
images: [
{
url: "https://jsoncrack.com/assets/jsoncrack.png",
Expand All @@ -25,7 +25,7 @@ export const metadata: Metadata = {
card: "summary_large_image",
title: "JSON Crack - Visualize Data to Graphs",
zoosphar marked this conversation as resolved.
Show resolved Hide resolved
description:
"Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML, CSV and more, into interactive graphs.",
"Innovative and open-source visualization application that produces interactive graphs from various data formats, such as JSON, YAML, XML, CSV and more.",
images: [{ url: "https://jsoncrack.com/assets/jsoncrack.png" }],
},
};
Expand Down