File tree 6 files changed +13
-11
lines changed
6 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import Navbar from '@/components/Navbar';
4
4
const Landing = ( ) => {
5
5
return (
6
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"
7
+ className = "flex flex-col min-h-screen justify-end py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden"
8
8
id = "landing"
9
9
>
10
- < Navbar />
10
+
11
11
< Background />
12
12
< div className = "flex justify-between items-end" >
13
13
< div >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import React from 'react';
4
4
5
5
const Layout = ( { children } : { children : React . ReactNode } ) => {
6
6
return (
7
- < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden " >
7
+ < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
8
8
< Navbar />
9
9
{ children }
10
10
< Footer />
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const Navbar = () => {
12
12
} , [ ] ) ;
13
13
14
14
return (
15
- < nav className = "flex justify-between items-center relative z-10" >
15
+ < nav className = "sticky top-10 flex justify-between items-center relative z-10 shadow-lg rounded-md bg-white/15 backdrop-blur-md px-6 py-6 " >
16
16
< Link href = "/" >
17
17
< Image
18
18
src = "/assets/csesoc_logo.svg"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Navbar from '@/components/Navbar';
3
3
4
4
export default function Custom404 ( ) {
5
5
return (
6
- < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden " >
6
+ < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
7
7
< div className = "items-center text-center" >
8
8
< Navbar />
9
9
< h1 className = "text-5xl font-bold pt-24" > 404 - Page Not Found</ h1 >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import Events from '@/components/Event';
5
5
6
6
export default function EventsPage ( ) {
7
7
return (
8
- < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden " >
8
+ < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
9
9
< Navbar />
10
10
< Events />
11
11
< Footer />
Original file line number Diff line number Diff line change
1
+ import Navbar from '@/components/Navbar' ;
1
2
import Landing from '@/components/Landing' ;
2
3
import Sponsors from '@/components/Sponsors/index' ;
3
4
import AboutHomePage from '@/components/About/AboutHomepage' ;
4
5
import EventsBrief from '@/components/Event/EventsBrief' ;
5
6
6
7
export default function HomePage ( ) {
7
8
return (
8
- < section >
9
- < Landing />
10
- < AboutHomePage />
11
- < EventsBrief />
12
- < Sponsors />
9
+ < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
10
+ < Navbar />
11
+ < Landing />
12
+ < AboutHomePage />
13
+ < EventsBrief />
14
+ < Sponsors />
13
15
</ section >
14
16
) ;
15
17
}
You can’t perform that action at this time.
0 commit comments