├── .gitignore ├── LICENSE ├── README.md ├── bun.lockb ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public ├── _redirects ├── favicon-16x16.jpg ├── favicon-192x192.jpg ├── favicon-32x32.jpg ├── favicon-512x512.jpg ├── favicon.ico ├── logo.png ├── manifest.json ├── placeholder.svg ├── robots.txt └── scholareu.png ├── src ├── App.css ├── App.tsx ├── components │ ├── ComparisonTable.tsx │ ├── FeaturesSection.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── HeroSection.tsx │ ├── SearchFilters.tsx │ ├── SimpleSlider.css │ ├── SimpleSlider.tsx │ ├── UniversityCard.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── hooks │ ├── use-mobile.tsx │ └── use-toast.ts ├── index.css ├── lib │ ├── data.ts │ ├── types.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── About.tsx │ ├── AddNotificationForm.css │ ├── AddNotificationForm.tsx │ ├── AddReviewForm.css │ ├── AddReviewForm.tsx │ ├── AddScholarshipForm.css │ ├── AddScholarshipForm.tsx │ ├── AddStudentAmbassadorForm.css │ ├── AddStudentAmbassadorForm.tsx │ ├── AddUniversityForm.css │ ├── AddUniversityForm.tsx │ ├── AdminPanel.css │ ├── AdminPanel.tsx │ ├── Compare.tsx │ ├── Index.tsx │ ├── NotFound.tsx │ ├── ScholarshipsSection.tsx │ ├── StudentConnect.tsx │ ├── Universities.tsx │ └── UniversityDetail.tsx └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon-16x16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/favicon-16x16.jpg -------------------------------------------------------------------------------- /public/favicon-192x192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/favicon-192x192.jpg -------------------------------------------------------------------------------- /public/favicon-32x32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/favicon-32x32.jpg -------------------------------------------------------------------------------- /public/favicon-512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/favicon-512x512.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/scholareu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/public/scholareu.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/ComparisonTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ComparisonTable.tsx -------------------------------------------------------------------------------- /src/components/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/FeaturesSection.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/SearchFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/SearchFilters.tsx -------------------------------------------------------------------------------- /src/components/SimpleSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/SimpleSlider.css -------------------------------------------------------------------------------- /src/components/SimpleSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/SimpleSlider.tsx -------------------------------------------------------------------------------- /src/components/UniversityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/UniversityCard.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/lib/data.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/About.tsx -------------------------------------------------------------------------------- /src/pages/AddNotificationForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddNotificationForm.css -------------------------------------------------------------------------------- /src/pages/AddNotificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddNotificationForm.tsx -------------------------------------------------------------------------------- /src/pages/AddReviewForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddReviewForm.css -------------------------------------------------------------------------------- /src/pages/AddReviewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddReviewForm.tsx -------------------------------------------------------------------------------- /src/pages/AddScholarshipForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddScholarshipForm.css -------------------------------------------------------------------------------- /src/pages/AddScholarshipForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddScholarshipForm.tsx -------------------------------------------------------------------------------- /src/pages/AddStudentAmbassadorForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddStudentAmbassadorForm.css -------------------------------------------------------------------------------- /src/pages/AddStudentAmbassadorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddStudentAmbassadorForm.tsx -------------------------------------------------------------------------------- /src/pages/AddUniversityForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddUniversityForm.css -------------------------------------------------------------------------------- /src/pages/AddUniversityForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AddUniversityForm.tsx -------------------------------------------------------------------------------- /src/pages/AdminPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AdminPanel.css -------------------------------------------------------------------------------- /src/pages/AdminPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/AdminPanel.tsx -------------------------------------------------------------------------------- /src/pages/Compare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/Compare.tsx -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/pages/ScholarshipsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/ScholarshipsSection.tsx -------------------------------------------------------------------------------- /src/pages/StudentConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/StudentConnect.tsx -------------------------------------------------------------------------------- /src/pages/Universities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/Universities.tsx -------------------------------------------------------------------------------- /src/pages/UniversityDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/src/pages/UniversityDetail.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------