Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
5d996bc
feat: add getStories and getStoriesByUserId functions for story retri…
jpcmf Dec 7, 2025
d759211
feat: add modal theme configuration for Chakra UI
jpcmf Dec 7, 2025
ec41e86
feat: update Modal component to use modalTheme from lib/theme
jpcmf Dec 7, 2025
0c2a968
feat: add hooks for story retrieval by user ID and general stories
jpcmf Dec 7, 2025
8910d52
feat: implement StoriesModal component for user story display
jpcmf Dec 7, 2025
6c1e938
feat: integrate story data retrieval in StoriesHome component
jpcmf Dec 7, 2025
587d231
feat: refactor StoriesSwiper to utilize unique stories and improve mo…
jpcmf Dec 7, 2025
d0c77fb
fix: correct onClose prop usage in StoriesModal component
jpcmf Dec 7, 2025
816b30f
feat: add react-insta-stories dependency for enhanced story functiona…
jpcmf Dec 7, 2025
e4836ed
feat: add @chakra-ui/anatomy dependency for improved component styling
jpcmf Dec 7, 2025
21ec9c2
fix: update next dependency to version 16.0.7 for improved stability
jpcmf Dec 7, 2025
caf3e6f
feat: add lock file
jpcmf Dec 7, 2025
f8f474b
feat: add width to logo component
jpcmf Dec 10, 2025
d8a856a
fix: remove unused React import from Footer component
jpcmf Dec 10, 2025
6fe0cb5
fix: adjust margin in component
jpcmf Dec 10, 2025
c2bdd78
fix: enhance loading spinner
jpcmf Dec 10, 2025
48c470b
fix: adjust margin in component
jpcmf Dec 10, 2025
c462fe5
feat: update logo
jpcmf Dec 10, 2025
79ffb11
feat: add .zed to .gitignore
jpcmf Dec 10, 2025
d3c9bec
fix: change endPage variable to const
jpcmf Dec 10, 2025
1bd3d72
fix: rename stories2 to stories for consistency
jpcmf Dec 10, 2025
6b0ed86
fix: add optional chaining to prevent runtime errors
jpcmf Dec 10, 2025
b1092f6
feat: add loading and error handling to the component
jpcmf Dec 10, 2025
c4fb935
fix: replace console.log with console.warn
jpcmf Dec 11, 2025
38461b6
fix: remove console.log
jpcmf Dec 11, 2025
0fb163e
refactor: simplify story types and centralize StoriesResponse definition
jpcmf Dec 11, 2025
7613bac
fix: add newline
jpcmf Dec 11, 2025
53cb116
fix: replace console.log with console.warn
jpcmf Dec 11, 2025
9dff9f6
fix: add error handling to getStories and getStoriesByUserId functions
jpcmf Dec 11, 2025
4037efc
fix: remove unnecessary whitespace
jpcmf Dec 11, 2025
e3af696
fix: update return type
jpcmf Dec 11, 2025
be36ce9
fix: standardize import statement quotes
jpcmf Dec 11, 2025
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ next-env.d.ts
public/original
launch.json
.github/workflows/main.yaml
.zed
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.3.4",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.3",
"@emotion/react": "^11.13.3",
Expand All @@ -24,7 +25,7 @@
"axios": "^1.12.2",
"boring-avatars": "^2.0.4",
"framer-motion": "^11.11.11",
"next": "16.0.1",
"next": "16.0.7",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.16",
"nookies": "^2.5.2",
Expand All @@ -33,6 +34,7 @@
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-insta-stories": "^2.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
Expand Down
121 changes: 68 additions & 53 deletions pnpm-lock.yaml

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

3 changes: 1 addition & 2 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from "react";
import { FaHeart, FaReact } from "react-icons/fa";
import { SiChakraui, SiNextdotjs } from "react-icons/si";

Expand Down Expand Up @@ -29,7 +28,7 @@ export function Footer() {
<SimpleGrid columns={{ base: 1, md: 2, lg: 4 }} spacing={8} mb={8}>
<VStack align="flex-start" spacing={3}>
<HStack spacing={2}>
<LogoSkateHub color="gray" />
<LogoSkateHub width={150} color="gray" />
</HStack>
<Text fontSize="sm" color="gray.600">
Conectando skatistas de todo o mundo.
Expand Down
Loading