diff --git a/src/Client/src/app/pages/legal/about/about.component.css b/src/Client/src/app/pages/legal/about/about.component.css new file mode 100644 index 0000000..a1852bc --- /dev/null +++ b/src/Client/src/app/pages/legal/about/about.component.css @@ -0,0 +1,16 @@ +.center { + width: 100%; + display: flex; + justify-content: center; +} + +.frame { + background-color: #000; + padding: 20px; + margin: 20px 0; + border-radius: 10px; +} + +.center p { + color: #FFF; +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/about/about.component.html b/src/Client/src/app/pages/legal/about/about.component.html index e84c4c4..bc0fcf3 100644 --- a/src/Client/src/app/pages/legal/about/about.component.html +++ b/src/Client/src/app/pages/legal/about/about.component.html @@ -1,5 +1,5 @@
-
+

Welcome to Mistox LLC. A project and hobby of Derek Holloway.


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

@@ -15,14 +15,11 @@

After you make your account. All the data in the database is easily accessable through the account settings and

you can delete your account at any time. Including all your data with it so there is no risk.

I wont show ads and never will and I refuse to use trackers on this site.

-
-
-

If you have any questions, concerns, or would like to suggest a feature, bug-fix, or request to help. Please feel

-

free to reach out to me at derek@mistox.net

- - - Buy Me a Coffee at ko-fi.com - +
+ + Buy Me a Coffee at ko-fi.com + +
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/about/about.component.ts b/src/Client/src/app/pages/legal/about/about.component.ts index 633ccb3..24cb909 100644 --- a/src/Client/src/app/pages/legal/about/about.component.ts +++ b/src/Client/src/app/pages/legal/about/about.component.ts @@ -8,6 +8,7 @@ import { CommonModule } from '@angular/common'; @Component({ selector: 'legal-about', templateUrl: './about.component.html', + styleUrls: [ './about.component.css' ], imports: [ FormsModule, CommonModule ] }) export class AboutComponent { diff --git a/src/Client/src/app/pages/legal/contact/contact.component.css b/src/Client/src/app/pages/legal/contact/contact.component.css new file mode 100644 index 0000000..26081b8 --- /dev/null +++ b/src/Client/src/app/pages/legal/contact/contact.component.css @@ -0,0 +1,15 @@ +.center { + background-color: green; +} + +.tile-frame { + column-count: 4; + column-gap: 20px; + padding: 20px; + width: calc(100% - 40px); +} + +.tile{ + background-color: aqua; + height: 40px; +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/contact/contact.component.html b/src/Client/src/app/pages/legal/contact/contact.component.html new file mode 100644 index 0000000..29da843 --- /dev/null +++ b/src/Client/src/app/pages/legal/contact/contact.component.html @@ -0,0 +1,11 @@ +
+ +
+ +
+ +
+ +
+ +
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/contact/contact.component.ts b/src/Client/src/app/pages/legal/contact/contact.component.ts new file mode 100644 index 0000000..eaa44cf --- /dev/null +++ b/src/Client/src/app/pages/legal/contact/contact.component.ts @@ -0,0 +1,20 @@ +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"); + }; + +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.css b/src/Client/src/app/pages/legal/privacy/privacy.component.css new file mode 100644 index 0000000..26081b8 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.css @@ -0,0 +1,15 @@ +.center { + background-color: green; +} + +.tile-frame { + column-count: 4; + column-gap: 20px; + padding: 20px; + width: calc(100% - 40px); +} + +.tile{ + background-color: aqua; + height: 40px; +} \ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.html b/src/Client/src/app/pages/legal/privacy/privacy.component.html new file mode 100644 index 0000000..29da843 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.html @@ -0,0 +1,11 @@ +
+ +
+ +
+ +
+ +
+ +
\ No newline at end of file diff --git a/src/Client/src/app/pages/legal/privacy/privacy.component.ts b/src/Client/src/app/pages/legal/privacy/privacy.component.ts new file mode 100644 index 0000000..f934ab4 --- /dev/null +++ b/src/Client/src/app/pages/legal/privacy/privacy.component.ts @@ -0,0 +1,20 @@ +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("Contact | BoredCareers"); + }; + +} \ No newline at end of file