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: made required changes in NavBar, added links and scroll animation #157

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
232 changes: 229 additions & 3 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"smooth-scroll": "^16.1.3",
"styled-components": "^6.1.13",
"swiper": "^11.1.14",
"three": "^0.168.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/AboutUs/Body.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const Body = () => {

return (
<>
<MainContainer>
<MainContainer id='about us'>
<BodyWrapper>
<BodyGradient />
<BodyTitle>aBOUT US</BodyTitle>
Expand All @@ -54,7 +54,7 @@ export const Body = () => {
{trimmedFirstCol}
{isMobile && (
<button
className='underline mx-2'
className='mx-2 underline'
onClick={() => setReadMoreFirstCol(!readMoreFirstCol)}
>
{readMoreFirstCol ? 'See Less' : 'See More'}
Expand Down
2 changes: 1 addition & 1 deletion src/components/EventsSection/Header.jsx/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SubHeader } from './SubHeader';
export const Header = () => {
return (
<>
<div>
<div id='events'>
<div className='bg-[#131313] h-[80px] sm:h-[100px] md:h-[110px] lg:h-[150px] w-full flex items-center overflow-hidden'>
<div className='font-spaceX font-bold text-[32px] sm:text-[40px] md:text-[50px] lg:text-[64px] lg:leading-[97.78] w-full text-center text-[#188FC3]'>
EVENTS
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { LogoText2 } from '../shared/Typography/Headings';

export const Footer = () => {
return (
<FooterContainer>
<FooterContainer id='contact'>
<FooterWrapper>
<FooterGradient />
<FooterTop>
Expand Down
Loading
Loading