Skip to content
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
Empty file modified .env.example
100644 → 100755
Empty file.
Empty file modified .eslintrc.json
100644 → 100755
Empty file.
Empty file modified .github/screenshot.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .github/skatehub.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .github/workflows/deploy.yaml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
Empty file modified .prettierignore
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ And that's it! Your `SkateHub Frontend` should now be up and running locally on

### 2025

- 2025-09-25 - Add ESLint packages to devDependencies for improved linting support [#121](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/121) _(v0.1.34)_
- 2025-01-15 - Move authentication logic to user edit page [#116](https://github.com/jpcmf/Frontend-GraduateProgram-FullStack-2024/pull/116) _(v0.1.33)_

### 2024
Expand Down
21 changes: 17 additions & 4 deletions eslint.config.mjs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,21 @@ import { FlatCompat } from "@eslint/eslintrc";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});
export default [...compat.extends("next/core-web-vitals")];

const config = [
{
ignores: [
"**/.next/**",
"**/node_modules/**",
"**/dist/**",
"**/coverage/**",
],
},
...compat.extends("next/core-web-vitals"),
];

export default config;
Empty file modified next.config.js
100644 → 100755
Empty file.
6 changes: 4 additions & 2 deletions package.json
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skatehub-frontend",
"version": "0.1.32",
"version": "0.1.33",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down Expand Up @@ -31,6 +31,8 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.36.0",
"@types/cookie": "^0.6.0",
"@types/node": "latest",
"@types/nodemailer": "^6.4.16",
Expand All @@ -52,4 +54,4 @@
"eslint"
]
}
}
}
18 changes: 15 additions & 3 deletions pnpm-lock.yaml
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified prettier.config.js
100644 → 100755
Empty file.
Empty file modified public/alexander-londono-unsplash-2.jpeg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/alexander-londono-unsplash.jpeg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/error404.gif
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/favicon.ico
100644 → 100755
Empty file.
Empty file modified public/loader.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/next.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/skatehub.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/tom-morbey-unsplash-2.jpeg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/vercel.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/components/ActiveLink/index.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Form/Input.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Header/Notification.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Header/Profile.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Header/Search.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Header/index.tsx
100644 → 100755
Empty file.
Empty file modified src/components/LogoSkateHub/index.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Sidebar/NavLink.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Sidebar/NavSection.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Sidebar/SidebarNav.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Sidebar/index.tsx
100644 → 100755
Empty file.
Empty file modified src/components/Toast/index.tsx
100644 → 100755
Empty file.
Empty file modified src/contexts/AuthContext.tsx
100644 → 100755
Empty file.
Empty file modified src/contexts/SidebarDrawerContext.tsx
100644 → 100755
Empty file.
Empty file modified src/features/dashboard/index.tsx
100644 → 100755
Empty file.
Empty file modified src/features/user/edit/index.tsx
100644 → 100755
Empty file.
Empty file modified src/lib/fonts.ts
100644 → 100755
Empty file.
Empty file modified src/pages/404.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/500.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/_app.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/_document.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/api/auth/[...nextauth].ts
100644 → 100755
Empty file.
Empty file modified src/pages/api/sendConfirmationEmail.ts
100644 → 100755
Empty file.
Empty file modified src/pages/api/sitemap.ts
100644 → 100755
Empty file.
Empty file modified src/pages/auth/confirmation.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/auth/forgot-password.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/auth/index.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/auth/reset-password.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/auth/signin.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/auth/signup.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/dashboard.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/general.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/index.tsx
100644 → 100755
Empty file.
Empty file modified src/pages/user/edit.tsx
100644 → 100755
Empty file.
Empty file modified src/services/auth.ts
100644 → 100755
Empty file.
Empty file modified src/shared/components/Form/Input.tsx
100644 → 100755
Empty file.
Empty file modified src/shared/components/Form/Textarea.tsx
100644 → 100755
Empty file.
Empty file modified src/shared/components/Layout/index.tsx
100644 → 100755
Empty file.
Empty file modified src/styles/theme.ts
100644 → 100755
Empty file.
Empty file modified src/types/next-auth.d.ts
100644 → 100755
Empty file.
Empty file modified src/utils/auth.ts
100644 → 100755
Empty file.
Empty file modified src/utils/constant.ts
100644 → 100755
Empty file.
Empty file modified tsconfig.json
100644 → 100755
Empty file.