Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
c686a6a
feat: Hero section and Navbar
Swapnil-Sagar Jul 29, 2024
a214bef
feat: Recognition and Why section
Swapnil-Sagar Jul 30, 2024
4d1d867
feat: footer and projects section
Swapnil-Sagar Jul 30, 2024
4735a08
section: key features
Swapnil-Sagar Jul 30, 2024
12dd05a
Update KeyFeaturesSection.tsx
Swapnil-Sagar Jul 30, 2024
7536179
feat: Code cleanup
Swapnil-Sagar Jul 31, 2024
a73eea1
mobile nav
Swapnil-Sagar Jul 31, 2024
cccdfdc
Delete networkConstants.tsx
Swapnil-Sagar Jul 31, 2024
b012c20
nav link fix
Swapnil-Sagar Jul 31, 2024
6c70433
News carousel fix
Swapnil-Sagar Jul 31, 2024
fd89733
feat: MObile view
Swapnil-Sagar Jul 31, 2024
088a655
UI fixes
Swapnil-Sagar Jul 31, 2024
a97cc28
fix: Review fixes and Network dropdown change
Swapnil-Sagar Aug 1, 2024
36ffdda
Create networkConstants.tsx
Swapnil-Sagar Aug 1, 2024
cf5214f
Feature scroll animation desktop
Swapnil-Sagar Aug 1, 2024
382ca6b
feat: Feature animation
Swapnil-Sagar Aug 2, 2024
4c57ef0
fix: Design changes
Swapnil-Sagar Aug 3, 2024
b65ac68
feat: UI changes
Swapnil-Sagar Aug 4, 2024
8d69a41
Tablet view fix
Swapnil-Sagar Aug 4, 2024
b99804e
Update KeyFeaturesSection.tsx
Swapnil-Sagar Aug 4, 2024
4a562f9
fix: Features posters and design changes
Swapnil-Sagar Aug 5, 2024
267da3f
feat: Feature animations and mobile sidebar
Swapnil-Sagar Aug 6, 2024
0f87aab
Fix: Added Links and removed not ready sections
Swapnil-Sagar Aug 6, 2024
853100a
Update KeyFeaturesSection.tsx
Swapnil-Sagar Aug 6, 2024
2f929bb
Update Footer.tsx
Swapnil-Sagar Aug 6, 2024
5ef6c82
fix: nav and padding issue
Swapnil-Sagar Aug 6, 2024
62ff80a
Update KeyFeaturesSection.tsx
Swapnil-Sagar Aug 6, 2024
8876861
mobile issues fix
Swapnil-Sagar Aug 6, 2024
9c2b120
fix: mobile padding
Swapnil-Sagar Aug 6, 2024
88ece73
Update: Key features mobile
Swapnil-Sagar Aug 7, 2024
dae4f88
Update KeyFeaturesSection.tsx
Swapnil-Sagar Aug 7, 2024
c53f002
fix: mobile view. padding fixes
Swapnil-Sagar Aug 7, 2024
786e564
Fix: Mobile annimations
Swapnil-Sagar Aug 7, 2024
8054d74
Update KeyFeaturesSection.tsx
Swapnil-Sagar Aug 7, 2024
55d1fec
hidden mobile feature scrollbar
Swapnil-Sagar Aug 7, 2024
2dc940e
fix: Search in network and review fixes
Swapnil-Sagar Aug 8, 2024
6ba0e24
Update infinite-moving-cards.tsx
Swapnil-Sagar Aug 8, 2024
d46d713
fix: Hover highlight
Swapnil-Sagar Aug 9, 2024
701e56e
fix: Carousel Button position
Swapnil-Sagar Aug 9, 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
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^11.3.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-scroll": "^1.8.7",
"resize-observer": "^1.0.4",
"resize-observer-polyfill": "^1.5.1",
"swiper": "^8.3.2",
"tailwind-merge": "^2.4.0",
"three": "^0.143.0"
},
"devDependencies": {
Expand Down
75 changes: 38 additions & 37 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,51 @@ import { useState } from 'react';
import { Route, Routes } from 'react-router-dom';
import Navbar from './components/Navbar';
import Home from './views/Home';
import LaunchApp from './views/LaunchApp';

function App() {
const [cookiePopup, setCookiePopup] = useState<boolean>(true);

return (
<div className="App">
{
cookiePopup && <aside className="fixed z-50 flex items-center justify-center px-5 py-3 text-white bg-black rounded-lg bottom-4 w-[90%] md:w-auto right-1 md:right-4">
<span
className="flex items-center hover:opacity-75"
>
<span className='mr-2 text-3xl'>🍪</span>
<span className='text-sm font-medium'>This website uses cookies to provide you the best possible experience.<br/>By continuing to use this website you consent to use our cookies.</span>
</span>
<div className='App'>
{cookiePopup && (
<aside className='fixed z-50 flex items-center justify-center px-5 py-3 text-white bg-black rounded-lg bottom-4 w-[90%] md:w-auto right-1 md:right-4'>
<span className='flex items-center hover:opacity-75'>
<span className='mr-2 text-3xl'>🍪</span>
<span className='text-sm font-medium'>
This website uses cookies to provide you the best possible experience.
<br />
By continuing to use this website you consent to use our cookies.
</span>
</span>

<button
className="p-1 ml-3 rounded-full bg-white/20 hover:bg-white/10"
aria-label="Dismiss Popup"
onClick={() => setCookiePopup(false)}
>
<svg
xmlns="http://www.w3.org/2000/svg"
className="w-4 h-4"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fillRule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clipRule="evenodd"
/>
</svg>
</button>
</aside>
}
<button
className='p-1 ml-3 rounded-full bg-white/20 hover:bg-white/10'
aria-label='Dismiss Popup'
onClick={() => setCookiePopup(false)}>
<svg
xmlns='http://www.w3.org/2000/svg'
className='w-4 h-4'
viewBox='0 0 20 20'
fill='currentColor'>
<path
fillRule='evenodd'
d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z'
clipRule='evenodd'
/>
</svg>
</button>
</aside>
)}

<Navbar />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/launch-app" element={<LaunchApp />} />
</Routes>
</div>
)
<Navbar />
<Routes>
<Route
path='/'
element={<Home />}
/>
</Routes>
</div>
);
}

export default App
5 changes: 5 additions & 0 deletions src/assets/images/arrow-diagonal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/arrow-rounded-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions src/assets/images/bg-hero.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/circle_pink.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 73 additions & 0 deletions src/assets/images/delegation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions src/assets/images/leaderboard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/project-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/images/projects-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/assets/images/quoteup.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/recognition-bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading