From 1981d67dd93e6b96bb5b568e835832520d82dd90 Mon Sep 17 00:00:00 2001 From: Mohammad Javed Date: Wed, 18 Sep 2024 01:04:01 +0530 Subject: [PATCH] Coming soon landing page --- public/angularui-white-logo.svg | 16 +++++++++++++++ src/app/app.component.html | 1 - src/app/app.routes.ts | 13 ++---------- .../coming-soon/coming-soon.component.html | 20 +++++++++++++++++++ .../coming-soon/coming-soon.component.ts | 11 ++++++++++ 5 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 public/angularui-white-logo.svg create mode 100644 src/app/components/coming-soon/coming-soon.component.html create mode 100644 src/app/components/coming-soon/coming-soon.component.ts diff --git a/public/angularui-white-logo.svg b/public/angularui-white-logo.svg new file mode 100644 index 0000000..3754d1b --- /dev/null +++ b/public/angularui-white-logo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/app/app.component.html b/src/app/app.component.html index 7beb1a0..90c6b64 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,2 +1 @@ - \ No newline at end of file diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 8ea2332..f6438c3 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -2,21 +2,12 @@ import { Routes } from '@angular/router'; import { HomeComponent } from './pages/home/home.component'; import { DocsComponent } from './pages/docs/docs.component'; import { AlertComponent } from './pages/docs/alert/alert.component'; +import { ComingSoonComponent } from './components/coming-soon/coming-soon.component'; export const routes: Routes = [ { path: '', - component: HomeComponent, + component: ComingSoonComponent, pathMatch: 'full' - }, - { - path: 'docs', - component: DocsComponent, - children: [ - { - path: 'alert', - component: AlertComponent, - } - ] } ]; diff --git a/src/app/components/coming-soon/coming-soon.component.html b/src/app/components/coming-soon/coming-soon.component.html new file mode 100644 index 0000000..3171207 --- /dev/null +++ b/src/app/components/coming-soon/coming-soon.component.html @@ -0,0 +1,20 @@ +
+
+
+
+ +
+
+ angularui logo image +

A Powerful UI Component Library for Angular, Styled with Tailwind CSS + Simplify your development with beautiful, reusable components. Stay tuned!

+
+
+
+

Get in touch for more updates: @immohammadjaved

+
+
+
+ + + \ No newline at end of file diff --git a/src/app/components/coming-soon/coming-soon.component.ts b/src/app/components/coming-soon/coming-soon.component.ts new file mode 100644 index 0000000..3ff3f83 --- /dev/null +++ b/src/app/components/coming-soon/coming-soon.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-coming-soon', + standalone: true, + imports: [], + templateUrl: './coming-soon.component.html' +}) +export class ComingSoonComponent { + +}