Add Dark Mode, Password Hashing for better security , Settings Page, Policy PDF in Policy section,UI Changes

This commit is contained in:
arav
2026-01-10 19:39:40 +05:30
parent 933c0741ab
commit 9b605279e6
35 changed files with 1344 additions and 659 deletions

View File

@@ -1,11 +1,15 @@
import React from 'react'
function Policy() {
const Policy = () => {
return (
<div>
Policy
<div className="flex flex-col h-screen w-full bg-gray-100 dark:bg-google-dark">
<div className="flex-grow w-full h-full">
<iframe
src="https://svu-iqac.somaiya.edu/University+Policies/12.Travel+Policy.pdf"
className="w-full h-full border-none"
title="Travel Policy"
/>
</div>
</div>
)
}
);
};
export default Policy
export default Policy;