Initial commit

Basic frontend design with schemas management
diff --git a/www/config/config.component.ts b/www/config/config.component.ts
new file mode 100644
index 0000000..e658a2a
--- /dev/null
+++ b/www/config/config.component.ts
@@ -0,0 +1,11 @@
+import { Component } from '@angular/core';
+
+@Component({
+  selector : 'netopeer-config',
+  templateUrl : './config.component.html',
+  styleUrls : ['../netopeer.content.css']
+})
+
+export class ConfigComponent {
+  title = 'Configuration';
+}