diff --git a/components/Tracks.jsx b/components/Tracks.jsx new file mode 100644 index 0000000..df94d86 --- /dev/null +++ b/components/Tracks.jsx @@ -0,0 +1,128 @@ +import React from "react"; + +const Tracks = () => { + return ( + <> +
+ +
+ TRACKS +
+
+ +
+
+
+ +
+
AI/ML
+
+ +
+
Shaping the Future with Intelligence + +
+
Step into the world of Artificial Intelligence and Machine Learning to + create solutions that revolutionize industries. Build intelligent + automation systems, recommendation engines, or AI-driven analytics + that solve real-world problems. This track is your chance to harness the + power of AI/ML and lead the charge in shaping the future with + transformative technologies.
+
+ + +
+ +
+
+
+ +
+
Healthcare
+
+ +
+ +
+
+
Innovating for a Healthier Tomorrow + +
+ +
Think about the difference you could make in someone’s life by + reimagining healthcare through technology. In this track, we’re looking + for ideas that can solve real-world health challenges. Whether it’s + creating tools for better patient care, improving hospital processes, or
+
+ + +
+ +
+
+
+ +
+
Open
+
Innovation
+
+ +
+ +
Your Ideas, Your Rules + +
+ +
This is your space to dream big and build boldly. The Open Innovation + Track gives you complete freedom to create solutions for the problems + you care about the most. Whether it’s tackling climate change, + improving education, or reinventing entertainment, the sky's the limit + for this track, let your creativity run wild. Whatever you’ve been waiting + to build, now’s the time to make it happen.
+
+ + +
+ +
+
+
+ +
+
TBA
+
+ +
To be announced soon !!
+
+ +
+
+
+ +
+
TBA
+
+ +
To be announced soon !!
+
+ +
+
+
+ +
+
TBA
+
+ +
To be announced soon !!
+
+ + + +
+
+ + ); +} + +export default Tracks; \ No newline at end of file diff --git a/pages/_app.js b/pages/_app.js index 59d70b0..c036bac 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,5 +1,6 @@ import "@/styles/globals.css"; import Navbar from "@/components/Shared/Navbar/Navbar"; +import Tracks from "@/components/Tracks.jsx"; import Footer from "@/components/Shared/Footer/Footer"; import Scroll from "@/components/Shared/Scroll"; @@ -14,4 +15,4 @@ export default function App({ Component, pageProps }) {