We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents5ac79bb +3dc26ad commitfd0dd50Copy full SHA for fd0dd50
frontend/src/components/Landing/index.tsx
@@ -1,13 +1,12 @@
1
importBackgroundfrom'@/components/Background';
2
-importNavbarfrom'@/components/Navbar';
3
4
constLanding=()=>{
5
return(
6
<section
7
-className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden"
+className="flex flex-col min-h-screen justify-end py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden"
8
id="landing"
9
>
10
-<Navbar/>
+
11
<Background/>
12
<divclassName="flex justify-between items-end">
13
<div>
frontend/src/components/Layout.tsx
@@ -4,10 +4,14 @@ import React from 'react';
constLayout=({ children}:{children:React.ReactNode})=>{
-<sectionclassName="flex flex-col min-h-screen justify-between py-8xl:px-24 md:px-10 px-5relative overflow-hidden">
+<sectionclassName="flex flex-col min-h-screen justify-between py-8 relative">
<Navbar/>
-{children}
-<Footer/>
+<divclassName='xl:px-24 md:px-10 px-5 '>
+{children}
+<Footer/>
+</div>
14
15
</section>
16
);
17
};
frontend/src/components/Navbar.tsx
@@ -12,7 +12,7 @@ const Navbar = () => {
},[]);
-<navclassName="flex justify-between items-center relative z-10">
+<navclassName="sticky top-0flex justify-between items-center relative z-10 shadow-lg rounded-md bg-black/15 backdrop-blur-md xl:px-24 md:px-10 px-5 py-6">
<Linkhref="/">
<Image
18
src="/assets/csesoc_logo.svg"
frontend/src/pages/404.tsx
@@ -3,7 +3,7 @@ import Navbar from '@/components/Navbar';
exportdefaultfunctionCustom404(){
-<sectionclassName="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden">
+<sectionclassName="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative">
<divclassName="items-center text-center">
<h1className="text-5xl font-bold pt-24">404 - Page Not Found</h1>
frontend/src/pages/events.tsx
@@ -5,10 +5,14 @@ import Events from '@/components/Event';
exportdefaultfunctionEventsPage(){
-<Events/>
+<Events/>
}
frontend/src/pages/index.tsx
@@ -1,3 +1,4 @@
+importNavbarfrom'@/components/Navbar';
importLandingfrom'@/components/Landing';
importSponsorsfrom'@/components/Sponsors/index';
importAboutHomePagefrom'@/components/About/AboutHomepage';
@@ -6,10 +7,17 @@ import EventsBrief from '@/components/Event/EventsBrief';
exportdefaultfunctionHomePage(){
<section>
-<Landing/>
-<AboutHomePage/>
-<EventsBrief/>
-<Sponsors/>
+<divclassName="h-8"></div>
+<Navbar/>
+<divclassName="-mt-36">
+<Landing/>
+<AboutHomePage/>
19
+<EventsBrief/>
20
+<Sponsors/>
21
22
23