From 4d5f34f39f6a0f0b8f73b5dd5fda598c8285121f Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Fri, 7 Nov 2025 12:27:10 +0100 Subject: [PATCH] added all pages from project --- src/app/pages/author/author.css | 0 src/app/pages/author/author.html | 1 + src/app/pages/author/author.ts | 11 +++++++++++ src/app/pages/book/book.css | 0 src/app/pages/book/book.html | 1 + src/app/pages/book/book.ts | 11 +++++++++++ src/app/pages/loan/loan.css | 0 src/app/pages/loan/loan.html | 1 + src/app/pages/loan/loan.ts | 11 +++++++++++ src/app/pages/user/user.css | 0 src/app/pages/user/user.html | 1 + src/app/pages/user/user.ts | 11 +++++++++++ 12 files changed, 48 insertions(+) create mode 100644 src/app/pages/author/author.css create mode 100644 src/app/pages/author/author.html create mode 100644 src/app/pages/author/author.ts create mode 100644 src/app/pages/book/book.css create mode 100644 src/app/pages/book/book.html create mode 100644 src/app/pages/book/book.ts create mode 100644 src/app/pages/loan/loan.css create mode 100644 src/app/pages/loan/loan.html create mode 100644 src/app/pages/loan/loan.ts create mode 100644 src/app/pages/user/user.css create mode 100644 src/app/pages/user/user.html create mode 100644 src/app/pages/user/user.ts diff --git a/src/app/pages/author/author.css b/src/app/pages/author/author.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/author/author.html b/src/app/pages/author/author.html new file mode 100644 index 0000000..e847908 --- /dev/null +++ b/src/app/pages/author/author.html @@ -0,0 +1 @@ +

author works!

diff --git a/src/app/pages/author/author.ts b/src/app/pages/author/author.ts new file mode 100644 index 0000000..fa80ecd --- /dev/null +++ b/src/app/pages/author/author.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-author', + imports: [], + templateUrl: './author.html', + styleUrl: './author.css', +}) +export class Author { + +} diff --git a/src/app/pages/book/book.css b/src/app/pages/book/book.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/book/book.html b/src/app/pages/book/book.html new file mode 100644 index 0000000..feb0e32 --- /dev/null +++ b/src/app/pages/book/book.html @@ -0,0 +1 @@ +

book works!

diff --git a/src/app/pages/book/book.ts b/src/app/pages/book/book.ts new file mode 100644 index 0000000..2332669 --- /dev/null +++ b/src/app/pages/book/book.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-book', + imports: [], + templateUrl: './book.html', + styleUrl: './book.css', +}) +export class Book { + +} diff --git a/src/app/pages/loan/loan.css b/src/app/pages/loan/loan.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/loan/loan.html b/src/app/pages/loan/loan.html new file mode 100644 index 0000000..53cb557 --- /dev/null +++ b/src/app/pages/loan/loan.html @@ -0,0 +1 @@ +

loan works!

diff --git a/src/app/pages/loan/loan.ts b/src/app/pages/loan/loan.ts new file mode 100644 index 0000000..6bba6f5 --- /dev/null +++ b/src/app/pages/loan/loan.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-loan', + imports: [], + templateUrl: './loan.html', + styleUrl: './loan.css', +}) +export class Loan { + +} diff --git a/src/app/pages/user/user.css b/src/app/pages/user/user.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/user/user.html b/src/app/pages/user/user.html new file mode 100644 index 0000000..d039bb7 --- /dev/null +++ b/src/app/pages/user/user.html @@ -0,0 +1 @@ +

user works!

diff --git a/src/app/pages/user/user.ts b/src/app/pages/user/user.ts new file mode 100644 index 0000000..ad839b1 --- /dev/null +++ b/src/app/pages/user/user.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-user', + imports: [], + templateUrl: './user.html', + styleUrl: './user.css', +}) +export class User { + +}