Sort file structure
This commit is contained in:
@@ -26,9 +26,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="bottom-bar">
|
<div class="bottom-bar">
|
||||||
<div class="bottom-bar-buttons bottom-bar-float">
|
<div class="bottom-bar-buttons bottom-bar-float">
|
||||||
<a class="nav-button-bottom bottom-bar-padding" routerLink="/contact">CONTACT</a>
|
<a class="nav-button-bottom bottom-bar-padding" href="https://auth.mistox.com/contact">CONTACT</a>
|
||||||
<a class="nav-button-bottom bottom-bar-padding" routerLink="/privacy">PRIVACY</a>
|
<a class="nav-button-bottom bottom-bar-padding" href="https://auth.mistox.com/privacy">PRIVACY</a>
|
||||||
<a class="nav-button-bottom bottom-bar-padding" routerLink="/about">ABOUT</a>
|
<a class="nav-button-bottom bottom-bar-padding" href="https://auth.mistox.com/about">ABOUT</a>
|
||||||
</div>
|
</div>
|
||||||
<a class="bottom-bar-logo" href="https://mistox.com">
|
<a class="bottom-bar-logo" href="https://mistox.com">
|
||||||
<img src="img/mistox-logo.png" />
|
<img src="img/mistox-logo.png" />
|
||||||
|
|||||||
@@ -1,14 +1,12 @@
|
|||||||
import { Routes } from '@angular/router';
|
import { Routes } from '@angular/router';
|
||||||
import { AboutComponent } from './pages/legal/about/about.component';
|
|
||||||
import { HomeComponent } from './pages/main/home/home.component';
|
import { HomeComponent } from './pages/home/home.component';
|
||||||
import { ContactComponent } from './pages/legal/contact/contact.component';
|
import { JobsComponent } from './pages/jobs/jobs.component';
|
||||||
import { PrivacyComponent } from './pages/legal/privacy/privacy.component';
|
import { ResumesComponent } from './pages/resumes/resumes.component';
|
||||||
import { JobsComponent } from './pages/main/jobs/jobs.component';
|
import { JobEditorComponent } from './pages/jobs/editor/jobeditor.component';
|
||||||
import { ResumesComponent } from './pages/main/resumes/resumes.component';
|
import { CompanyEditorComponent } from './pages/company/editor/editor.component';
|
||||||
import { JobEditorComponent } from './pages/main/jobs/editor/jobeditor.component';
|
import { JobViewerComponent } from './pages/jobs/viewer/jobviewer.component';
|
||||||
import { CompanyEditorComponent } from './pages/main/company/editor/editor.component';
|
import { CompanyComponent } from './pages/company/company.component';
|
||||||
import { JobViewerComponent } from './pages/main/jobs/viewer/jobviewer.component';
|
|
||||||
import { CompanyComponent } from './pages/main/company/company.component';
|
|
||||||
|
|
||||||
export const routes: Routes = [
|
export const routes: Routes = [
|
||||||
|
|
||||||
@@ -27,9 +25,4 @@ export const routes: Routes = [
|
|||||||
{ path: "company", component: CompanyComponent },
|
{ path: "company", component: CompanyComponent },
|
||||||
{ path: "company/editor", component: CompanyEditorComponent },
|
{ path: "company/editor", component: CompanyEditorComponent },
|
||||||
|
|
||||||
// Legal
|
|
||||||
{ path: "about", component: AboutComponent },
|
|
||||||
{ path: "contact", component: ContactComponent },
|
|
||||||
{ path: "privacy", component: PrivacyComponent }
|
|
||||||
|
|
||||||
]
|
]
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
.center {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.frame {
|
|
||||||
background-color: #000;
|
|
||||||
padding: 20px;
|
|
||||||
margin: 20px 0;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.center p {
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<div class="center">
|
|
||||||
<div class="frame">
|
|
||||||
<p>Welcome to Mistox LLC. A project and hobby of Derek Holloway.</p>
|
|
||||||
<br />
|
|
||||||
<p>I am an indi-developer who has been making small projects since I was 13. I originally learned lua and spent 4 years mastering it. Then I moved onto C# which is my preferred language</p>
|
|
||||||
<p>My programming catalog consist of C#, Lua, SQL, C++, C, and JavaScript in the order of knowledge from best to passiable.</p>
|
|
||||||
<p>Im currently in college for computer sciences and should honestly be doing that instead of this but I find working on this website and hobby games to be way more enjoyable.</p>
|
|
||||||
<br />
|
|
||||||
<p>I would love to learn how to use Blender in order to make all the models for my games but with the amount of work ive already made for myself im going to hold off for now.</p>
|
|
||||||
<p>This website and everything on it are the long countless hours of my time and motivation to create something that I can be proud of and share that with the world.</p>
|
|
||||||
<p>So if you would like to support me as a small creator please feel free to leave a donation from on the store page. It would means a lot to me.</p>
|
|
||||||
<br />
|
|
||||||
<p>For the nerds out there, this website is a blazor webassembly app, hosted on an ubuntu webserver, with a mysql backend.</p>
|
|
||||||
<p>All the passwords are encrypted using bcrypt for your safety and all the data is only allowed through SSL.</p>
|
|
||||||
<p>After you make your account. All the data in the database is easily accessable through the account settings and</p>
|
|
||||||
<p>you can delete your account at any time. Including all your data with it so there is no risk.</p>
|
|
||||||
<p>I wont show ads and never will and I refuse to use trackers on this site.</p>
|
|
||||||
|
|
||||||
<div class="center">
|
|
||||||
<a href='https://ko-fi.com/A0A3TSI2D' target='_blank'>
|
|
||||||
<img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi6.png?v=6' alt='Buy Me a Coffee at ko-fi.com' />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { Router, ActivatedRoute } from '@angular/router';
|
|
||||||
import { Title } from '@angular/platform-browser';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'legal-about',
|
|
||||||
templateUrl: './about.component.html',
|
|
||||||
styleUrls: [ './about.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
|
||||||
})
|
|
||||||
export class AboutComponent {
|
|
||||||
|
|
||||||
constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) {
|
|
||||||
this.title.setTitle("About | Mistox");
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
.center {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile-frame {
|
|
||||||
column-count: 4;
|
|
||||||
column-gap: 20px;
|
|
||||||
padding: 20px;
|
|
||||||
width: calc(100% - 40px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile{
|
|
||||||
background-color: aqua;
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<div class="tile-frame">
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { Router, ActivatedRoute } from '@angular/router';
|
|
||||||
import { Title } from '@angular/platform-browser';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'legal-contact',
|
|
||||||
templateUrl: './contact.component.html',
|
|
||||||
styleUrls: [ './contact.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
|
||||||
})
|
|
||||||
export class ContactComponent {
|
|
||||||
|
|
||||||
constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) {
|
|
||||||
this.title.setTitle("Contact | BoredCareers");
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
.center {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile-frame {
|
|
||||||
column-count: 4;
|
|
||||||
column-gap: 20px;
|
|
||||||
padding: 20px;
|
|
||||||
width: calc(100% - 40px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile{
|
|
||||||
background-color: aqua;
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<div class="tile-frame">
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { Router, ActivatedRoute } from '@angular/router';
|
|
||||||
import { Title } from '@angular/platform-browser';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'legal-privacy',
|
|
||||||
templateUrl: './privacy.component.html',
|
|
||||||
styleUrls: [ './privacy.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
|
||||||
})
|
|
||||||
export class PrivacyComponent {
|
|
||||||
|
|
||||||
constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) {
|
|
||||||
this.title.setTitle("Privacy | BoredCareers");
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user