├── EMPOWERBHARAT ├── README.md ├── components.json ├── gitignore.txt ├── modified.txt ├── next-env.d.ts ├── next.config.ts ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── src │ ├── ai │ │ ├── dev.ts │ │ ├── flows │ │ │ ├── ai-mentor-panel.ts │ │ │ ├── career-coach.ts │ │ │ ├── career-simulation.ts │ │ │ ├── confidence-assessor.ts │ │ │ ├── dream-map-generator.ts │ │ │ ├── government-scheme-suggestions.ts │ │ │ └── resume-generator.ts │ │ └── genkit.ts │ ├── app │ │ ├── aamp │ │ │ ├── aamp-results.tsx │ │ │ └── page.tsx │ │ ├── auth │ │ │ └── page.tsx │ │ ├── career-coach │ │ │ ├── career-coach-results.tsx │ │ │ ├── confidence-assessment.tsx │ │ │ └── page.tsx │ │ ├── dream-map │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── jobs │ │ │ ├── job-card.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── learn-earn │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── profile │ │ │ ├── confidence-score-display.tsx │ │ │ ├── page.tsx │ │ │ ├── profile-form.tsx │ │ │ └── udaan-wallet-display.tsx │ │ ├── resume-builder │ │ │ └── page.tsx │ │ ├── schemes │ │ │ ├── page.tsx │ │ │ └── schemes-results.tsx │ │ ├── simulation-lab │ │ │ └── page.tsx │ │ └── skill-exchange │ │ │ └── page.tsx │ ├── components │ │ ├── auth │ │ │ └── auth-form.tsx │ │ ├── common │ │ │ ├── error-message.tsx │ │ │ ├── loading-spinner.tsx │ │ │ ├── page-header.tsx │ │ │ └── profile-check-wrapper.tsx │ │ ├── layout │ │ │ └── app-sidebar.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── tooltip.tsx │ ├── contexts │ │ └── profile-context.tsx │ ├── hooks │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ └── lib │ │ ├── schema.ts │ │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json ├── README.md └── Websitemodel ├── Screenshot 2025-05-18 211336.png ├── Screenshot 2025-05-18 211355.png ├── Screenshot 2025-05-18 211408.png ├── Screenshot 2025-05-18 211429.png ├── Screenshot 2025-05-18 211438.png ├── Screenshot 2025-05-18 211448.png ├── Screenshot 2025-05-18 211456.png ├── Screenshot 2025-05-18 211505.png ├── Screenshot 2025-05-18 211516.png ├── Screenshot 2025-05-18 211642.png ├── Screenshot 2025-05-18 211655.png └── Screenshot 2025-05-18 211711.png /EMPOWERBHARAT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/README.md -------------------------------------------------------------------------------- /EMPOWERBHARAT/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/components.json -------------------------------------------------------------------------------- /EMPOWERBHARAT/gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/gitignore.txt -------------------------------------------------------------------------------- /EMPOWERBHARAT/modified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EMPOWERBHARAT/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/next-env.d.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/next.config.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/package-lock.json -------------------------------------------------------------------------------- /EMPOWERBHARAT/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/package.json -------------------------------------------------------------------------------- /EMPOWERBHARAT/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/postcss.config.mjs -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/dev.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/ai-mentor-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/ai-mentor-panel.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/career-coach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/career-coach.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/career-simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/career-simulation.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/confidence-assessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/confidence-assessor.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/dream-map-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/dream-map-generator.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/government-scheme-suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/government-scheme-suggestions.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/flows/resume-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/flows/resume-generator.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/ai/genkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/ai/genkit.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/aamp/aamp-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/aamp/aamp-results.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/aamp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/aamp/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/auth/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/career-coach/career-coach-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/career-coach/career-coach-results.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/career-coach/confidence-assessment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/career-coach/confidence-assessment.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/career-coach/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/career-coach/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/dream-map/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/dream-map/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/favicon.ico -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/globals.css -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/jobs/job-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/jobs/job-card.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/jobs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/jobs/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/layout.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/learn-earn/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/learn-earn/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/profile/confidence-score-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/profile/confidence-score-display.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/profile/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/profile/profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/profile/profile-form.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/profile/udaan-wallet-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/profile/udaan-wallet-display.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/resume-builder/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/resume-builder/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/schemes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/schemes/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/schemes/schemes-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/schemes/schemes-results.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/simulation-lab/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/simulation-lab/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/app/skill-exchange/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/app/skill-exchange/page.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/auth/auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/auth/auth-form.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/common/error-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/common/error-message.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/common/loading-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/common/loading-spinner.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/common/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/common/page-header.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/common/profile-check-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/common/profile-check-wrapper.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/layout/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/layout/app-sidebar.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/button.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/card.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/form.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/input.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/label.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/select.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/table.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/contexts/profile-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/contexts/profile-context.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/lib/schema.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/src/lib/utils.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/tailwind.config.ts -------------------------------------------------------------------------------- /EMPOWERBHARAT/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/EMPOWERBHARAT/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/README.md -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211336.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211355.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211408.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211429.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211438.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211438.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211448.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211456.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211505.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211516.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211642.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211655.png -------------------------------------------------------------------------------- /Websitemodel/Screenshot 2025-05-18 211711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhivya7codes/Empower-Bharat/HEAD/Websitemodel/Screenshot 2025-05-18 211711.png --------------------------------------------------------------------------------