Skip to content

Commit

Permalink
Coming soon landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Javed authored and Mohammad Javed committed Sep 17, 2024
1 parent 94f8c90 commit 1981d67
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 12 deletions.
16 changes: 16 additions & 0 deletions public/angularui-white-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<app-header></app-header>
<router-outlet></router-outlet>
13 changes: 2 additions & 11 deletions src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
]
}
];
20 changes: 20 additions & 0 deletions src/app/components/coming-soon/coming-soon.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<section class="min-h-screen bg-gray-900 flex justify-center items-center">
<div class="w-full max-w-7xl px-4 md:px-5 lg:px-5 mx-auto">
<div class="w-full md:px-16 px-10 md:pt-16 pt-10 pb-10 bg-gray-900 rounded-2xl flex-col justify-end items-center lg:gap-28 md:gap-16 gap-10 inline-flex">
<div class="flex-col justify-end items-center lg:gap-16 gap-10 flex">

<div class="flex-col justify-center items-center gap-10 flex">
<div class="flex-col justify-start items-center gap-2.5 flex">
<img src="angularui-white-logo.svg" alt="angularui logo image" class="object-cover h-24">
<p class="text-center text-gray-500 font-normal leading-relaxed text-3xl">A Powerful UI Component Library for Angular, Styled with Tailwind CSS
Simplify your development with beautiful, reusable components. Stay tuned!</p>
</div>
</div>
</div>
<p class="text-center text-gray-500 text-lg font-normal leading-snug">Get in touch for more updates: <a href="https://x.com/immohammadjaved" target="_blank" class="hover:text-gray-100 transition-all duration-700 ease-in-out"> &#64;immohammadjaved</a></p>
</div>
</div>
</section>


<!-- <section class="min-h-screen bg-gray-900"></section> -->
11 changes: 11 additions & 0 deletions src/app/components/coming-soon/coming-soon.component.ts
Original file line number Diff line number Diff line change
@@ -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 {

}

0 comments on commit 1981d67

Please sign in to comment.