From c2adcdd162fb8333a77f7097ca8392a665348ecd Mon Sep 17 00:00:00 2001 From: Sindhura Karumuri Date: Sat, 26 Jul 2025 19:09:28 +0530 Subject: [PATCH 1/3] fixed issue --- package-lock.json | 43 ++++++++++++++++++++++++++++ package.json | 1 + src/App.jsx | 6 ++++ src/components/Nexus.jsx | 56 +++++++++++++++++++++++++++++++++++++ src/components/Prologue.jsx | 54 +++++++++++++++++++++++++++++++++++ src/components/Vault.jsx | 54 +++++++++++++++++++++++++++++++++++ 6 files changed, 214 insertions(+) create mode 100644 src/components/Nexus.jsx create mode 100644 src/components/Prologue.jsx create mode 100644 src/components/Vault.jsx diff --git a/package-lock.json b/package-lock.json index d9f3bdb..7bc6c59 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "@gsap/react": "^2.1.1", "clsx": "^2.1.1", + "framer-motion": "^12.23.9", "gsap": "^3.12.5", "react": "^18.3.1", "react-dom": "^18.3.1", @@ -2663,6 +2664,33 @@ "url": "https://github.com/sponsors/rawify" } }, + "node_modules/framer-motion": { + "version": "12.23.9", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.9.tgz", + "integrity": "sha512-TqEHXj8LWfQSKqfdr5Y4mYltYLw96deu6/K9kGDd+ysqRJPNwF9nb5mZcrLmybHbU7gcJ+HQar41U3UTGanbbQ==", + "license": "MIT", + "dependencies": { + "motion-dom": "^12.23.9", + "motion-utils": "^12.23.6", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "@emotion/is-prop-valid": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/is-prop-valid": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", @@ -3622,6 +3650,21 @@ "node": ">=16 || 14 >=14.17" } }, + "node_modules/motion-dom": { + "version": "12.23.9", + "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.9.tgz", + "integrity": "sha512-6Sv++iWS8XMFCgU1qwKj9l4xuC47Hp4+2jvPfyTXkqDg2tTzSgX6nWKD4kNFXk0k7llO59LZTPuJigza4A2K1A==", + "license": "MIT", + "dependencies": { + "motion-utils": "^12.23.6" + } + }, + "node_modules/motion-utils": { + "version": "12.23.6", + "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz", + "integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==", + "license": "MIT" + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", diff --git a/package.json b/package.json index abacbe4..2214b1d 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dependencies": { "@gsap/react": "^2.1.1", "clsx": "^2.1.1", + "framer-motion": "^12.23.9", "gsap": "^3.12.5", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/src/App.jsx b/src/App.jsx index 1427910..5a0927b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -5,6 +5,9 @@ import Navbar from './components/Navbar' import Features from './components/Features' import Story from './components/Story' import Contact from './components/Contact' +import Nexus from './components/Nexus' +import Vault from './components/Vault' +import Prologue from './components/Prologue' import Footer from './components/Footer' const App = () => { @@ -16,6 +19,9 @@ const App = () => { + + +