Skip to content

refactor: improve landing page and fix some issues #20

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

Merged
merged 8 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@
},
"plugins": ["@typescript-eslint", "react"],
"rules": {
"no-console": "warn"
"no-console": "warn",
"no-restricted-imports": [
"error",
{
"name": "next/link",
"message": "Please import `@navigation` instead.",
"importNames": ["default"]
},
{
"name": "next/navigation",
"message": "Please import `@navigation` instead.",
"importNames": ["redirect", "permanenRedirect", "useRouter", "useNavigation"]
}
]
}
}
6 changes: 6 additions & 0 deletions messages/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"HomePage": {
"title": "Hello world",
"about": "About page"
}
}
1 change: 1 addition & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const nextConfig = {
},
],
},
trailingSlash: true,
};

export default withNextIntl(nextConfig);
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
"string-width": "4.1.0",
"@typescript-eslint/typescript-estree": "^5.59.2"
}
}
14 changes: 14 additions & 0 deletions public/assets/icons/ic_figma.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/assets/icons/ic_golang.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions public/assets/icons/ic_hmc-full-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions public/assets/icons/ic_hmc-full.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions public/assets/icons/ic_instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading