Skip to content

Commit

Permalink
OMKR-1 | Job section updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavsingh4522 committed Dec 29, 2023
1 parent d4e8e56 commit c301ff8
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 6 deletions.
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
"scripts": []
"scripts": [
]
},
"configurations": {
"production": {
Expand Down
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { ProgressBarComponent } from './components/general/progress-bar/progress
import { VideoComponent } from './components/home/video/video.component';
import { PageViewCounterComponent } from './components/general/counter/page-view-counter/page-view-counter.component';
import { OtherActivityComponent } from './components/other-activity/other-activity.component';
import { MatIconModule } from '@angular/material/icon';

// AOT compilation support
export function HttpLoaderFactory(http: HttpClient) {
Expand Down Expand Up @@ -55,7 +56,7 @@ export function HttpLoaderFactory(http: HttpClient) {
VideoComponent,
//Remove the following line:
PageViewCounterComponent,
OtherActivityComponent,
OtherActivityComponent
],
imports: [
BrowserModule,
Expand All @@ -72,7 +73,8 @@ export function HttpLoaderFactory(http: HttpClient) {
useFactory: HttpLoaderFactory,
deps: [HttpClient]
}
})
}),
MatIconModule,
],
providers: [],
bootstrap: [AppComponent]
Expand Down
15 changes: 15 additions & 0 deletions src/app/components/home/job/job.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,18 @@
margin-bottom: 50px;
}
}

a.company-tab-content{
display: inline;
margin: 0;
padding: 0;
border: none;
font: inherit;
color: inherit;
background-color: transparent;
cursor: pointer;
text-decoration: none;
white-space: nowrap;
font-family: SF Mono, Fira Code, Fira Mono, Roboto Mono, Lucida Console, Monaco, Monospace;
font-size: 16px;
}
2 changes: 1 addition & 1 deletion src/app/components/home/job/job.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h3 class="navbar-pre-title">
<li *ngFor='let job of "Experience.Jobs" | translate; let i = index' [title]="job.Tab" [ngbNavItem]="i">
<a ngbNavLink>{{job.Tab}}</a>
<ng-template ngbNavContent>
<h4 class='title-tab-content'>{{job.Title}} | <span class="company-tab-content">{{job.Tab}}</span></h4>
<h4 class='title-tab-content'>{{job.Title}} | <a class="company-tab-content" href="{{job.Company.CompanyLink}}" target="_blank">{{job.Company.Name}}<mat-icon class="company-tab-content-link">open_in_new</mat-icon></a></h4>
<h5 class="job-time">{{job.Date}}</h5>
<!-- {{job.Description | json}} -->
<p *ngFor='let jobDescriptionParagraph of job.Description; let i = index' class="job-description"
Expand Down
21 changes: 19 additions & 2 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,29 @@
"Experience.Title": "Experience",
"Experience.Jobs": [
{
"Tab": "Unthinkable Solutions LLP",
"Tab": "Unthinkable",
"Company": {
"Name":"Unthinkable Solutions LLP",
"CompanyLink":"https://www.unthinkable.co/",
"GithubLink": "https://www.linkedin.com/company/unthinkable-software/"
},
"Title": "Backend .NET Developer",
"Date": "January 2021 - July 2023",
"Description": [
"Implemented gRPC Microservices using .NET Core, enhancing API response times by 40%.",
"Worked with AWS technologies like SQS, Lambda, and API Gateway to develop scalable solutions.",
"Practiced Test-Driven Development and participated in agile methodologies for timely deliverables."
"Practiced Test-Driven Development and participated in agile methodologies for timely deliverables.",
"Collaborated with cross-functional teams to develop and deploy software solutions.",
"Mentored junior developers and conducted training sessions on .NET Core and AWS services."
]
},
{
"Tab": "Marlabs",
"Company": {
"Name":"Marlabs Inc.",
"CompanyLink": "https://www.marlabs.com/",
"GithubLink": "https://www.linkedin.com/company/marlabs/"
},
"Title": "Backend Developer",
"Date": "July 2023 - October 2023",
"Description": [
Expand All @@ -35,6 +47,11 @@
},
{
"Tab": "Internships",
"Company": {
"Name":"Internships",
"CompanyLink": "",
"GithubLink": ""
},
"Title": "Intern",
"Date": "During B.Tech",
"Description": [
Expand Down

0 comments on commit c301ff8

Please sign in to comment.