-
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.
features(main) πΉ UI and Performance improvements
β implemented react query hook β dynamic data fetching β optimized codebase β improved reusability
- Loading branch information
Showing
18 changed files
with
997 additions
and
236 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -33,3 +33,5 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
/src/app/dynamicPages |
Large diffs are not rendered by default.
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
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,68 @@ | ||
[ | ||
{ | ||
"imgSrc": "/projects/session.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "Session", | ||
"description": "Session is a social media app that allows users to share their thoughts with the world. It is a platform where users can chat with others, share their experiences, and discover new things. Session is designed to be simple, intuitive, and fun to use.", | ||
"live": "https://github.com/realpxd/Session", | ||
"github": "https://github.com/realpxd/Session" | ||
}, | ||
{ | ||
"imgSrc": "/projects/gph_tp.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "GPHisar", | ||
"description": "GPHisar is an Official Government Institute Educational App. This app helps students and staff to quickly access Study Materials and News & Anouncements from the Institute.", | ||
"live": "https://gphisar.ac.in/" | ||
}, | ||
{ | ||
"imgSrc": "/projects/wod_tp.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "WOD", | ||
"description": "WOD - Whispers of Deception , is a Android Mobile App Project that comes with a unique idea of Voice communication among peoples from world .", | ||
"live": "https://github.com/realpxd/WOD/blob/master/app/release/app-release.apk", | ||
"github": "https://github.com/realpxd/WOD" | ||
}, | ||
{ | ||
"imgSrc": "/projects/ngl-user.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "NGL - Clone", | ||
"description": "NGL is a anonymous-message sharing website that allow users to share their thoughts and messages without revealing their name or identity.", | ||
"live": "https://ngl-clone-frontend.vercel.app/", | ||
"github": "https://github.com/realpxd/Ngl-Clone", | ||
"isDesk": true | ||
}, | ||
{ | ||
"imgSrc": "/projects/ecom.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "E-Commerce", | ||
"description": "It is a E-Commerce Website template that includes admin panel for products listing , product deleting etc.", | ||
"live": "https://realpxd.github.io/s-ecom-project/", | ||
"github": "https://github.com/realpxd/s-ecom-project", | ||
"isDesk": true | ||
}, | ||
{ | ||
"imgSrc": "/projects/spotify-clone.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "Spotify Clone", | ||
"description": "Spotify is a website where the users can listen to songs and interact with the playlists, and control the songs volume, current time, play/pause etc.", | ||
"live": "https://spotify-clone-phi-puce.vercel.app/", | ||
"github": "https://github.com/realpxd/Spotify-Clone", | ||
"isDesk": true | ||
}, | ||
{ | ||
"imgSrc": "/projects/xclone-home.png", | ||
"imgw": 220, | ||
"imgh": 200, | ||
"title": "X - Clone", | ||
"description": "X (formerly twitter) is a social media app used to share our thoughts and communicate with the world in a very effecient way.", | ||
"live": "https://x-clone-pxd.vercel.app/", | ||
"github": "https://github.com/realpxd/X-Clone", | ||
"isDesk": true | ||
} | ||
] |
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
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,20 @@ | ||
'use client' | ||
|
||
import { QueryClient, QueryClientProvider } from 'react-query' | ||
import { useState } from 'react' | ||
|
||
export const ReactQueryClientProvider = ({ children }) => { | ||
const [queryClient] = useState( | ||
() => | ||
new QueryClient({ | ||
defaultOptions: { | ||
queries: { | ||
// With SSR, we usually want to set some default staleTime | ||
// above 0 to avoid refetching immediately on the client | ||
staleTime: 60 * 1000, | ||
}, | ||
}, | ||
}) | ||
) | ||
return <QueryClientProvider client={queryClient}>{children}</QueryClientProvider> | ||
} |
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.