diff --git a/src/app/page.tsx b/src/app/page.tsx index 48f3d9b..775fb17 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,10 @@ export default function Home() { const [activeTab, setActiveTab] = useState("home"); const webPages = [ - { name: "Uni-Notes", url: "https://uninotes.com" }, + { name: "Uni-Notes", url: "https://uni-notes.netlify.app/" }, { name: "ERP", url: "https://erp.bits-pilani.ac.in" }, + { name: "Google DSC Resources", url: "https://gdscbpdc.github.io/"}, + { name: "ACM Resources", url: "https://openlib-cs.acmbpdc.org/"} // Add other web pages as needed ]; diff --git a/src/components/HomePage.tsx b/src/components/HomePage.tsx index dd31869..ceabbab 100644 --- a/src/components/HomePage.tsx +++ b/src/components/HomePage.tsx @@ -7,44 +7,26 @@ import DotPattern from "@/components/magicui/dot-pattern"; // Adjust the import interface HomePageProps { onEnter: () => void; + navigation: React.ReactNode; } -const HomePage: React.FC = ({ onEnter }) => { +function HomePage({ onEnter, navigation }: HomePageProps) { return ( -
- {/* Dot pattern background */} +
- {/* Main Content */} -
- {/* Header */} -
-

UniDash

- -
- -
-
-

All University Resources in a Single Place

-

- Quickly access course materials, campus services, and academic tools. - Stay organized and save time with UniDash. -

- -
-
+
+
+ {navigation} +
+

Welcome to the University Dashboard

+

This is your central hub for all university-related information and tools.

+
); -}; +} export default HomePage; \ No newline at end of file