Skip to content

Commit

Permalink
projects: add sentinel, licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
JaxonWright committed Aug 19, 2023
1 parent ee5baf1 commit 50a7f72
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/app/icons.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
faBold,
faCalendar,
faEnvelope,
faFileContract
} from '@fortawesome/free-solid-svg-icons';

// Brand Icons (fab)
Expand Down Expand Up @@ -53,6 +54,8 @@ import {
faFontAwesome,
faSpotify,
faLastfm,
faRust,
faLinux
} from '@fortawesome/free-brands-svg-icons';

/**
Expand Down Expand Up @@ -91,6 +94,7 @@ export class IconsModule {
faBold,
faCalendar,
faEnvelope,
faFileContract,
// fab
faJava,
faPython,
Expand All @@ -117,6 +121,8 @@ export class IconsModule {
faFontAwesome,
faSpotify,
faLastfm,
faRust,
faLinux
);
}

Expand Down
59 changes: 59 additions & 0 deletions src/app/pages/projects/projects.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ export class ProjectsComponent implements OnInit {
description : `This is a web application that allows Tesla drivers to have easy access to a multitude of media services while their vehicle is in park.
What makes this special is that it triggers "Theater Mode", which will make the application and anything clicked within it be open on the entire screen.`,
categories : [
{
icon : ['fas','file-contract'],
title : 'GPL-3.0'
},
{
icon : ['fab','angular'],
title : 'Angular'
Expand Down Expand Up @@ -78,6 +82,61 @@ export class ProjectsComponent implements OnInit {
}
]
},
{
title : 'sentinel',
logo : '../../assets/img/projects/sentinel.png',
darkLogo : '../../assets/img/projects/sentinelLight.png',
logoOnly : true,
description : `A free, open-source Windows, macOS, and Linux application that allows you to efficiently view, manage, and export sentry and dashcam footage from your Tesla vehicle. It does require you to have access to the USB drive containing the footage, whether that be directly plugged into your computer or using a more complicated setup with a network share`,
categories : [
{
icon : ['fas','file-contract'],
title : 'GPL-3.0'
},
{
icon : ['fab','windows'],
title : 'Windows'
},
{
icon : ['fab','apple'],
title : 'macOS'
},
{
icon : ['fab','linux'],
title : 'Linux'
},
{
icon : ['fab','angular'],
title : 'Angular'
},
{
icon : ['fas','code'],
title : 'Tauri'
},
{
icon : ['fas','code'],
title : 'TypeScript'
},
{
icon : ['fab','rust'],
title : 'Rust'
},
{
icon : ['fab','html5'],
title : 'HTML'
},
{
icon : ['fab','css3-alt'],
title : 'CSS'
},
],
actions : [
{
link : 'https://github.com/arbitrarydot/sentinel',
title : 'GitHub'
}
]
},
{
title : 'Passageway',
logo : '../../assets/img/projects/passageway.png',
Expand Down
Binary file added src/assets/img/projects/sentinel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/projects/sentinelLight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 50a7f72

Please sign in to comment.