Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Layout #1

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ module.exports = tseslint.config(
...angular.configs.tsRecommended,
eslintPluginPrettierRecommended,
],

// Set the custom processor which will allow us to have our inline Component templates extracted
// and treated as if they are HTML files (and therefore have the .html config below applied to them)
processor: angular.processInlineTemplates,
Expand Down Expand Up @@ -59,6 +58,7 @@ module.exports = tseslint.config(
allow: ['warn', 'error'],
},
],
'@typescript-eslint/no-extraneous-class': 'warn',
},
},
{
Expand Down
9 changes: 9 additions & 0 deletions public/background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
295 changes: 2 additions & 293 deletions src/app/app.component.html

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions src/app/app.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.background {
background-image: url('../../public/background.svg');
background-repeat: no-repeat;
z-index: -1;
position: absolute;
height: 50vh;
width: 100%;
background-position: 33%;
background-size: 150%;
image-rendering: pixelated;
}
.glass {
position: absolute;
z-index: -1;
width: 100%;
min-height: 100vh;
backdrop-filter: blur(40px) saturate(140%);
background-color: rgba(0, 100, 42, 0.1);
}
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet],
imports: [RouterOutlet, AppComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
})
Expand Down
26 changes: 25 additions & 1 deletion src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
import { Routes } from '@angular/router';
import { AuthPageComponent } from './pages/auth-page/auth-page.component';
import { LandingPageComponent } from './pages/landing-page/landing-page.component';
import { FaqPageComponent } from './pages/faq-page/faq-page.component';
import { AssoPageComponent } from './pages/asso-page/asso-page.component';
import { TransparencyPageComponent } from './pages/transparency-page/transparency-page.component';
import { UserPageComponent } from './pages/user-page/user-page.component';

export const routes: Routes = [];
export const routes: Routes = [
{
path: 'auth',
component: AuthPageComponent,
/*children: [
{ path: 'login', loadComponent: () => import('./pages/auth-page/login.component').then(m => m.LoginComponent) },
{
path: 'register',
loadComponent: () => import('./pages/auth-page/register.component').then(m => m.RegisterComponent),
},
],*/
},
{ path: 'home', component: LandingPageComponent },
{ path: 'faq', component: FaqPageComponent },
{ path: 'asso', component: AssoPageComponent },
{ path: 'transparency', component: TransparencyPageComponent },
{ path: 'profile', component: UserPageComponent },
{ path: '**', redirectTo: 'home' },
];
1 change: 1 addition & 0 deletions src/app/pages/asso-page/asso-page.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>asso-page works!</p>
Empty file.
22 changes: 22 additions & 0 deletions src/app/pages/asso-page/asso-page.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { AssoPageComponent } from './asso-page.component';

describe('AssoPageComponent', () => {
let component: AssoPageComponent;
let fixture: ComponentFixture<AssoPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AssoPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(AssoPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/asso-page/asso-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-asso-page',
standalone: true,
imports: [],
templateUrl: './asso-page.component.html',
styleUrl: './asso-page.component.scss',
})
export class AssoPageComponent {}
2 changes: 2 additions & 0 deletions src/app/pages/auth-page/auth-page.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<p>auth-page works!</p>
<router-outlet></router-outlet>
Empty file.
22 changes: 22 additions & 0 deletions src/app/pages/auth-page/auth-page.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { AuthPageComponent } from './auth-page.component';

describe('AuthPageComponent', () => {
let component: AuthPageComponent;
let fixture: ComponentFixture<AuthPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AuthPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(AuthPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
11 changes: 11 additions & 0 deletions src/app/pages/auth-page/auth-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';

@Component({
selector: 'app-auth-page',
standalone: true,
imports: [RouterOutlet],
templateUrl: './auth-page.component.html',
styleUrl: './auth-page.component.scss',
})
export class AuthPageComponent {}
1 change: 1 addition & 0 deletions src/app/pages/faq-page/faq-page.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>faq-page works!</p>
Empty file.
22 changes: 22 additions & 0 deletions src/app/pages/faq-page/faq-page.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { FaqPageComponent } from './faq-page.component';

describe('FaqPageComponent', () => {
let component: FaqPageComponent;
let fixture: ComponentFixture<FaqPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [FaqPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(FaqPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/faq-page/faq-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-faq-page',
standalone: true,
imports: [],
templateUrl: './faq-page.component.html',
styleUrl: './faq-page.component.scss',
})
export class FaqPageComponent {}
1 change: 1 addition & 0 deletions src/app/pages/landing-page/landing-page.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>landing-page works!</p>
Empty file.
22 changes: 22 additions & 0 deletions src/app/pages/landing-page/landing-page.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { LandingPageComponent } from './landing-page.component';

describe('LandingPageComponent', () => {
let component: LandingPageComponent;
let fixture: ComponentFixture<LandingPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [LandingPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(LandingPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/landing-page/landing-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-landing-page',
standalone: true,
imports: [],
templateUrl: './landing-page.component.html',
styleUrl: './landing-page.component.scss',
})
export class LandingPageComponent {}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>transparency-page works!</p>
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { TransparencyPageComponent } from './transparency-page.component';

describe('TransparencyPageComponent', () => {
let component: TransparencyPageComponent;
let fixture: ComponentFixture<TransparencyPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TransparencyPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(TransparencyPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/transparency-page/transparency-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-transparency-page',
standalone: true,
imports: [],
templateUrl: './transparency-page.component.html',
styleUrl: './transparency-page.component.scss',
})
export class TransparencyPageComponent {}
1 change: 1 addition & 0 deletions src/app/pages/user-page/user-page.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>user-page works!</p>
Empty file.
22 changes: 22 additions & 0 deletions src/app/pages/user-page/user-page.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { UserPageComponent } from './user-page.component';

describe('UserPageComponent', () => {
let component: UserPageComponent;
let fixture: ComponentFixture<UserPageComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [UserPageComponent],
}).compileComponents();

fixture = TestBed.createComponent(UserPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/pages/user-page/user-page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-user-page',
standalone: true,
imports: [],
templateUrl: './user-page.component.html',
styleUrl: './user-page.component.scss',
})
export class UserPageComponent {}
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<app-root></app-root>
<app-root></app-root>
</body>
</html>
12 changes: 12 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
/* You can add global styles to this file, and also import other style files */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
background-color: #fbe6e6;
}
app-root {
min-height: 100vh;
}
Loading