From 7571d439400868b69212c9c4ff9fc825cff97cb6 Mon Sep 17 00:00:00 2001 From: Ayush Date: Tue, 2 Jul 2024 23:47:25 +0530 Subject: [PATCH] Added trakcs and new designs --- components/NavBar.tsx | 5 ++ pages/awards.tsx | 61 ++++++++------------ pages/papers.tsx | 107 ++++++++++++++++------------------- pages/tracks.tsx | 127 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 203 insertions(+), 97 deletions(-) create mode 100644 pages/tracks.tsx diff --git a/components/NavBar.tsx b/components/NavBar.tsx index 743c5ee..c7c6847 100644 --- a/components/NavBar.tsx +++ b/components/NavBar.tsx @@ -36,10 +36,15 @@ const Links: Array<{ href: '/sponsorship', label: 'Sponsors', }, + { + href: '/tracks', + label: 'Tracks', + }, { href: '/contact', label: 'Contact Us', }, + // { // href: "https://rzp.io/l/3N4bwhvH", // label: "Quick Payment Link", diff --git a/pages/awards.tsx b/pages/awards.tsx index b53150a..23b583c 100644 --- a/pages/awards.tsx +++ b/pages/awards.tsx @@ -1,43 +1,30 @@ -//import { Tabs } from '@mantine/core' -// import { List,Center } from '@mantine/core' - -import React from 'react' - +import React from 'react'; function Awards() { return ( -
- - - +
+
- ) + ); } -export default Awards +export default Awards; diff --git a/pages/papers.tsx b/pages/papers.tsx index 83fb0dc..f3d2824 100644 --- a/pages/papers.tsx +++ b/pages/papers.tsx @@ -1,67 +1,54 @@ -//import { Tabs } from '@mantine/core' -// import { List,Center } from '@mantine/core' - -import React from 'react' - +import React from 'react'; function Papers() { return ( -
- - - +
+ + Submit Your Paper + + + Download Guidelines for Authors + +
+
- ) + ); } -export default Papers +export default Papers; diff --git a/pages/tracks.tsx b/pages/tracks.tsx new file mode 100644 index 0000000..5614c40 --- /dev/null +++ b/pages/tracks.tsx @@ -0,0 +1,127 @@ +import React from 'react'; + +function Papers() { + return ( +
+ +
+ ); +} + +export default Papers;