-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* draft: new UI test * refactor: UI modifications * fix: wrong use of h1 tag * refactor: add new section * docs: add guidelines * feat: add company info table * feat: add db related blogs
- Loading branch information
1 parent
2f008ad
commit f32ff1f
Showing
37 changed files
with
1,287 additions
and
1,322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
const companiesMap = [ | ||
{ | ||
items: [ | ||
{ text: "General Guidelines", link: "/general" }, | ||
{ text: 'Before Application', link: "/beforeapplying" }, | ||
{ text: "Chaldal", link: "/chaldal" }, | ||
{ text: "Bevy Commerce", link: "/bevycommerce" }, | ||
{ text: 'Brain Station 23 <span class="VPBadge warning">updated</span>', link: "/bs23" }, | ||
{ text: "DSI", link: "/dsi" }, | ||
{ text: "Exabyting", link: "/exabyting" }, | ||
{ text: 'Fringecore <span class="VPBadge tip">new</span>', link: "/fringecore" }, | ||
{ text: 'Inverse AI <span class="VPBadge warning">updated</span>', link: "/inverseai" }, | ||
{ text: "IQVIA", link: "/iqvia" }, | ||
{ text: "Priyo", link: "/priyo" }, | ||
{ text: "Kite Games Studio", link: "/kite" }, | ||
{ text: "Orbitax", link: "/orbitax" }, | ||
{ text: "Optimizely", link: "/optimizely" }, | ||
{ text: "Relisource", link: "/relisource" }, | ||
{ text: "RoBenDevs", link: "/robendevs" }, | ||
{ text: "Spectrum", link: "/spectrum" }, | ||
{ text: "SRBD", link: "/srbd" }, | ||
{ text: "Synesis IT", link: "/synesis" }, | ||
{ | ||
text: "Therap BD", | ||
link: "/therap/", | ||
items: [ | ||
{ text: 'Software Engineer <span class="VPBadge warning">updated</span>', link: "/therap/swe.md" }, | ||
{ text: "Database Engineer", link: "/therap/dbe.md" } | ||
], | ||
}, | ||
{ text: "WSD", link: "/wsd" }, | ||
{ text: "WellDev", link: "/welldev" }, | ||
], | ||
}, | ||
{ | ||
items: [{ text: "CSE competitions", link: "/competitions" }], | ||
}, | ||
] | ||
|
||
export default companiesMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
const notesMap = [ | ||
{ | ||
items: [ | ||
{ text: "General Guidelines", link: "/general" }, | ||
], | ||
}, | ||
{ | ||
text: "Database", | ||
items: [ | ||
{ text: "Resources", link: "/database" }, | ||
], | ||
}, | ||
{ | ||
text: "Data Structures", | ||
items: [ | ||
{ text: "General Guidelines", link: "/general" } | ||
], | ||
}, | ||
] | ||
|
||
export default notesMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Interview BD contents | ||
|
||
This folder serves as the content repository for the site. | ||
|
||
Add new company in the `/companies` folder. | ||
|
||
If you need to add any image or something, then add the image in `/resource` folder and use that link. | ||
|
||
## Directory structure | ||
```bash | ||
docs/ | ||
├── index.md # the home page | ||
├── companies/ # All companies folder | ||
│ ├── beforeapplying.md # A company page | ||
│ ├── chaldal.md # Another company page | ||
│ ├── ... | ||
│ └── therap/ # A company iwith multiple files | ||
│ ├── dbe.md # A role under the company | ||
│ ├── index.md # Index page for the company | ||
│ └── swe.md | ||
├── notes/ # The notes folder | ||
│ └── general.md # A page in the notes section | ||
├── resource/ # Add your resources like images here | ||
│ ├── README.md # Instruction page for resource | ||
│ ├── image1.jpg # An image used in somewhere | ||
│ └── image2.webp | ||
└── .vitepress/ | ||
├── config.mjs # Site configuration file | ||
├── sitemap/ # Folder containing sidebar contents | ||
│ ├── companies.mjs # Sidebar of company section | ||
│ └── notes.mjs # Sidebar of notes section | ||
└── theme/ | ||
├── custom.css # Add custom css here | ||
└── index.js | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Company Section | ||
This folder is used to add questions for specific companies. Add new companies by creating a new file with .md extension. | ||
|
||
If you want to add multiple files for the same company, then create a folder with the company name and create individual files in it. This can be done to add seperate pages for seperate positions of a company. See `Therap BD` for example. |
File renamed without changes.
Oops, something went wrong.