├── src
├── app
│ ├── favicon.ico
│ ├── opengraph-image.png
│ ├── components
│ │ ├── styles.css
│ │ └── layout.tsx
│ ├── universities
│ │ ├── page.tsx
│ │ ├── [counselling]
│ │ │ ├── [uni]
│ │ │ │ ├── cutoff
│ │ │ │ │ └── page.module.css
│ │ │ │ ├── loading.tsx
│ │ │ │ ├── clientLayout.tsx
│ │ │ │ ├── layout.tsx
│ │ │ │ ├── placement
│ │ │ │ │ ├── page.module.css
│ │ │ │ │ ├── page.tsx
│ │ │ │ │ └── tabs-placement.tsx
│ │ │ │ ├── page.module.css
│ │ │ │ └── seatmatrix
│ │ │ │ │ └── page.module.css
│ │ │ ├── layout.module.css
│ │ │ ├── styles.module.css
│ │ │ └── layout.tsx
│ │ └── loading.tsx
│ ├── robot.ts
│ ├── sitemap.ts
│ ├── globals.css
│ ├── compare
│ │ ├── layout.tsx
│ │ └── page.module.css
│ ├── predictor
│ │ ├── [counselling]
│ │ │ ├── layout.module.css
│ │ │ ├── layout.tsx
│ │ │ └── styles.module.css
│ │ ├── page.module.css
│ │ ├── counsellings.ts
│ │ └── page.tsx
│ ├── privacy
│ │ └── page.mdx
│ ├── tos
│ │ └── page.mdx
│ └── layout.tsx
├── public
│ ├── fonts
│ │ └── impact.ttf
│ ├── backgrounds
│ │ ├── j2j-bg.png
│ │ ├── j2j-bg-m.png
│ │ ├── bgheading.jpg
│ │ ├── tools
│ │ │ ├── uni.png
│ │ │ ├── contact.png
│ │ │ ├── featcomp.png
│ │ │ ├── placements.png
│ │ │ └── predictor.png
│ │ ├── colleges
│ │ │ ├── dtu.jpg
│ │ │ ├── nsut.jpg
│ │ │ ├── igdtuw.jpg
│ │ │ ├── iiitd.jpg
│ │ │ ├── nsute.jpg
│ │ │ └── nsutw.jpg
│ │ ├── counsellings
│ │ │ └── bg1.png
│ │ ├── rank
│ │ │ └── bgheading.jpg
│ │ └── predictor
│ │ │ └── bgheading.jpg
│ ├── icons
│ │ ├── uni
│ │ │ ├── dtu_icon.png
│ │ │ ├── iiitd_icon.jpg
│ │ │ ├── nsut_icon.png
│ │ │ └── igdtuw_icon.png
│ │ ├── navbar
│ │ │ ├── j2jicon.png
│ │ │ ├── cross.svg
│ │ │ ├── menu.svg
│ │ │ ├── discord.svg
│ │ │ └── instagram.svg
│ │ └── counsellings
│ │ │ ├── jac.jpg
│ │ │ └── josaa.png
│ ├── vercel.svg
│ ├── clipmask.svg
│ ├── window.svg
│ ├── file.svg
│ ├── mask.svg
│ ├── arrow.svg
│ ├── search.svg
│ ├── checkmark.svg
│ ├── arrows2.svg
│ ├── globe.svg
│ ├── next.svg
│ ├── circle.svg
│ ├── locationicon.svg
│ └── nirficon.svg
├── config.ts
├── components
│ ├── Charts
│ │ ├── PieChart
│ │ │ ├── piechart.module.css
│ │ │ └── Piechart.tsx
│ │ └── BarGraphs
│ │ │ ├── bargraph.module.css
│ │ │ └── BarGraphs.tsx
│ ├── footer
│ │ ├── footer-wrapper.tsx
│ │ └── footer.module.css
│ ├── Inputs
│ │ ├── TextArea
│ │ │ ├── textarea.tsx
│ │ │ └── styles.module.css
│ │ └── SingleInput
│ │ │ ├── style.module.css
│ │ │ └── singleInput.tsx
│ ├── loader
│ │ ├── loader.tsx
│ │ └── loader.module.css
│ ├── badges
│ │ ├── badges.tsx
│ │ └── badges.module.css
│ ├── scroll-btn
│ │ ├── scroll-button.module.css
│ │ └── scroll-button.tsx
│ ├── switch
│ │ ├── switch.tsx
│ │ └── switch.module.css
│ ├── radio-buttons
│ │ ├── radio-group.tsx
│ │ ├── radio-button.tsx
│ │ └── radio-button.module.css
│ ├── tabs
│ │ ├── tabs.tsx
│ │ └── tabs.module.css
│ ├── dialog-box
│ │ ├── dialog-box.tsx
│ │ └── dialog-box.module.css
│ ├── check-boxes
│ │ ├── check-boxes.tsx
│ │ └── check-boxes.module.css
│ ├── bottom-nav
│ │ ├── bottom-nav.module.css
│ │ └── bottom-nav.tsx
│ ├── buttons
│ │ ├── button.tsx
│ │ └── button.module.css
│ ├── uni-card-new
│ │ ├── uni-info-card.module.css
│ │ └── uni-info-card.tsx
│ ├── accordion
│ │ ├── accordion.module.css
│ │ └── accordion.tsx
│ ├── cards
│ │ ├── Uni
│ │ │ ├── uni-card.module.css
│ │ │ └── uni-card.tsx
│ │ └── placement
│ │ │ ├── placement.module.css
│ │ │ └── placement.tsx
│ ├── upper-nav
│ │ ├── upper-nav.module.css
│ │ └── upper-nav.tsx
│ ├── rank-selector
│ │ └── rank-selector.module.css
│ ├── pagination
│ │ ├── pagination.module.css
│ │ └── pagination.tsx
│ ├── app
│ │ └── nav-bar
│ │ │ └── nav-bar.tsx
│ ├── select-menus
│ │ └── select-menu.module.css
│ └── combobox
│ │ └── combobox.module.css
├── mdx-components.tsx
├── lib
│ └── get-college-type.ts
└── mdx.module.css
├── .idea
├── vcs.xml
├── .gitignore
├── jsLibraryMappings.xml
├── modules.xml
├── material_theme_project_new.xml
├── frontend.iml
├── discord.xml
├── dataSources.xml
└── sqlDataSources.xml
├── next.config.ts
├── .gitignore
├── tsconfig.json
├── package.json
├── LICENSE
└── README.md
/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/app/favicon.ico
--------------------------------------------------------------------------------
/src/app/opengraph-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/app/opengraph-image.png
--------------------------------------------------------------------------------
/src/public/fonts/impact.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/fonts/impact.ttf
--------------------------------------------------------------------------------
/src/public/backgrounds/j2j-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/j2j-bg.png
--------------------------------------------------------------------------------
/src/public/icons/uni/dtu_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/uni/dtu_icon.png
--------------------------------------------------------------------------------
/src/public/backgrounds/j2j-bg-m.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/j2j-bg-m.png
--------------------------------------------------------------------------------
/src/public/icons/navbar/j2jicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/navbar/j2jicon.png
--------------------------------------------------------------------------------
/src/public/icons/uni/iiitd_icon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/uni/iiitd_icon.jpg
--------------------------------------------------------------------------------
/src/public/icons/uni/nsut_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/uni/nsut_icon.png
--------------------------------------------------------------------------------
/src/public/backgrounds/bgheading.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/bgheading.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/tools/uni.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/tools/uni.png
--------------------------------------------------------------------------------
/src/public/icons/counsellings/jac.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/counsellings/jac.jpg
--------------------------------------------------------------------------------
/src/public/icons/uni/igdtuw_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/uni/igdtuw_icon.png
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/dtu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/dtu.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/nsut.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/nsut.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/tools/contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/tools/contact.png
--------------------------------------------------------------------------------
/src/public/icons/counsellings/josaa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/icons/counsellings/josaa.png
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/igdtuw.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/igdtuw.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/iiitd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/iiitd.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/nsute.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/nsute.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/colleges/nsutw.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/colleges/nsutw.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/counsellings/bg1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/counsellings/bg1.png
--------------------------------------------------------------------------------
/src/public/backgrounds/rank/bgheading.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/rank/bgheading.jpg
--------------------------------------------------------------------------------
/src/public/backgrounds/tools/featcomp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/tools/featcomp.png
--------------------------------------------------------------------------------
/src/public/backgrounds/tools/placements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/tools/placements.png
--------------------------------------------------------------------------------
/src/public/backgrounds/tools/predictor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/tools/predictor.png
--------------------------------------------------------------------------------
/src/app/components/styles.css:
--------------------------------------------------------------------------------
1 | h3 {
2 | font-size: 16px;
3 | font-weight: 300;
4 | color: #bebebe;
5 | margin-top: 20px;
6 | }
--------------------------------------------------------------------------------
/src/public/backgrounds/predictor/bgheading.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/J2J-App/frontend/HEAD/src/public/backgrounds/predictor/bgheading.jpg
--------------------------------------------------------------------------------
/src/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/universities/page.tsx:
--------------------------------------------------------------------------------
1 | import {redirect} from "next/navigation";
2 |
3 | export default function Page() {
4 | return redirect("/universities/josaa");
5 | }
--------------------------------------------------------------------------------
/src/config.ts:
--------------------------------------------------------------------------------
1 | const API_URL = "https://api.jeepedia.in/api";
2 |
3 | if (!API_URL) {
4 | throw new Error("API_URL is not set");
5 | }
6 |
7 | export default API_URL;
8 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 | Loading... 18 |
19 |{children}
, 21 | 22 | ul: ({ children }) =>{children},
42 | code: ({ children }) => {children},
43 | blockquote: ({ children }) => {children}, 44 | hr: () =>
75 | {name} 76 |
77 |59 | {description} 60 |
61 | 62 |92 | Placement data is currently not available for this college 93 |
94 |63 | You can always switch to other counsellings from the navbar, your data gets synced. 64 |
65 |106 | {counselling.description} 107 |
108 |47 | {branch} 48 |
49 |{ 56 | reg ? reg : "NA"}
57 |{ 61 | placed ? placed : "NA"} 62 |
63 |75 | {percent 76 | ? `${percent.toString().slice(0, 4)}%` 77 | : "NA"} 78 |
79 |85 | {avg ? `${avg} LPA` : "NA"} 86 |
87 |91 | {mid ? `${mid} LPA` : "NA"} 92 |
93 |133 | No placement data available for {year} 134 |
135 | ), 136 | }; 137 | }); 138 | 139 | return ( 140 |