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

feat: added events carousel #120

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
51079c7
chore: setup project
Srish-ty Sep 19, 2024
a08d671
chore: added config files
Srish-ty Sep 19, 2024
3df6c3c
feat: added instruction
Srish-ty Sep 19, 2024
8138abd
add eventsCarausel draft
AYANscyy2 Sep 21, 2024
f51628e
fix some issues
AYANscyy2 Sep 21, 2024
7fc0cc0
add some changed
AYANscyy2 Sep 21, 2024
56c80a2
add tailwind classnames
AYANscyy2 Sep 21, 2024
b7dbadd
update reviewed changes
AYANscyy2 Sep 21, 2024
f417045
feat: update animation speed, fix smaller screen swiping animation, a…
AYANscyy2 Sep 22, 2024
8bce11a
feat: add responsivenesss to text paragraph
AYANscyy2 Sep 22, 2024
cde0f42
fix
AYANscyy2 Sep 22, 2024
23e77c2
feat : removve unneccessary comments, add padding to slide
AYANscyy2 Sep 22, 2024
be2433e
feat: add styles.jsx for eventWrapper
AYANscyy2 Sep 22, 2024
006aa82
feat: aligned event image with its container
AYANscyy2 Sep 22, 2024
0b1f9ec
updated animation style
AYANscyy2 Oct 1, 2024
1dc095c
Merge branch 'main' into eventCaraousal
Srish-ty Oct 9, 2024
e979388
fix:Update package.json
Srish-ty Oct 9, 2024
1495a2f
Merge branch 'main' into eventCaraousal
Srish-ty Oct 9, 2024
a955e97
Merge branch 'main' into eventCaraousal
Srish-ty Oct 9, 2024
44239e8
fix: resolve conflicts
Srish-ty Oct 9, 2024
e6f23da
feat: improved file structure and fix prettier issues
AYANscyy2 Oct 9, 2024
e354462
feat: improved file structure and fix prettier issues
AYANscyy2 Oct 9, 2024
bb996aa
fix: prettier
Srish-ty Oct 9, 2024
b839789
fix: eslint
Srish-ty Oct 9, 2024
4b30fc5
Merge branch 'eventCaraousal' of https://github.com/AYANscyy2/project…
Srish-ty Oct 9, 2024
9eb144c
feat: improved file structure and fix prettier issues
AYANscyy2 Oct 9, 2024
88acfad
feat: improved file structure and fix prettier issues
AYANscyy2 Oct 9, 2024
c510881
fix: prettier fix
AYANscyy2 Oct 9, 2024
723c617
fix: deployment issues
AYANscyy2 Oct 9, 2024
8850325
Merge branch 'main' into eventCaraousal
Srish-ty Oct 10, 2024
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
11 changes: 8 additions & 3 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import withTwin from './withTwin.mjs'
import withTwin from './withTwin.mjs';

/**
* @type {import('next').NextConfig}
*/
export default withTwin({
const nextConfig = withTwin({
reactStrictMode: true,
})
images: {
domains: ['res.cloudinary.com'], // Allow images from Cloudinary
},
});

export default nextConfig;
Loading