diff --git a/site/src/app/components/footer/footer.component.html b/site/src/app/components/footer/footer.component.html index b7864c2..8e0d3fc 100644 --- a/site/src/app/components/footer/footer.component.html +++ b/site/src/app/components/footer/footer.component.html @@ -1,4 +1,5 @@
All rights reserved © Bitgapp Ltd. {{year}} Terms and Conditions -
\ No newline at end of file + + diff --git a/site/src/app/components/github-stats/github-stats.component.html b/site/src/app/components/github-stats/github-stats.component.html new file mode 100644 index 0000000..6420c27 --- /dev/null +++ b/site/src/app/components/github-stats/github-stats.component.html @@ -0,0 +1 @@ + diff --git a/site/src/app/components/github-stats/github-stats.component.scss b/site/src/app/components/github-stats/github-stats.component.scss new file mode 100644 index 0000000..529b949 --- /dev/null +++ b/site/src/app/components/github-stats/github-stats.component.scss @@ -0,0 +1,3 @@ +:host { + margin: 20px; +} \ No newline at end of file diff --git a/site/src/app/components/github-stats/github-stats.component.ts b/site/src/app/components/github-stats/github-stats.component.ts new file mode 100644 index 0000000..f8607a8 --- /dev/null +++ b/site/src/app/components/github-stats/github-stats.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'eqm-github-stats', + templateUrl: './github-stats.component.html', + styleUrls: ['./github-stats.component.scss'] +}) +export class GithubStatsComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/site/src/app/routes/root/sections/overview/overview.component.html b/site/src/app/routes/root/sections/overview/overview.component.html index 5e4fd55..8f96969 100644 --- a/site/src/app/routes/root/sections/overview/overview.component.html +++ b/site/src/app/routes/root/sections/overview/overview.component.html @@ -1,4 +1,4 @@ -
+
@@ -20,6 +20,13 @@

By Downloading and installing eqMac you automatically agree to our Terms and Conditions +
+
+ 600k+ Downloads + | + 50k+ Users +
+
- +
\ No newline at end of file diff --git a/site/src/app/routes/root/sections/overview/overview.component.scss b/site/src/app/routes/root/sections/overview/overview.component.scss index d52cf54..688dc9a 100644 --- a/site/src/app/routes/root/sections/overview/overview.component.scss +++ b/site/src/app/routes/root/sections/overview/overview.component.scss @@ -21,10 +21,10 @@ } .screenshot { - border: 1px solid black; + // border: 1px solid black; margin: 30px 0; - $shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2); - box-shadow: $shadow; - -moz-box-shadow: $shadow; - -webkit-box-shadow: $shadow; + // $shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.2); + // box-shadow: $shadow; + // -moz-box-shadow: $shadow; + // -webkit-box-shadow: $shadow; } \ No newline at end of file diff --git a/site/src/app/site.module.ts b/site/src/app/site.module.ts index 214ee2a..9998711 100644 --- a/site/src/app/site.module.ts +++ b/site/src/app/site.module.ts @@ -16,6 +16,7 @@ import { Routes, RouterModule } from '@angular/router' import { TermsAndConditionsComponent } from './routes/terms/terms.component' import { FAQComponent } from './routes/faq/faq.component' import { MatExpansionModule } from '@angular/material/expansion' +import { GithubStatsComponent } from './components/github-stats/github-stats.component' const routes: Routes = [{ path: '', @@ -39,7 +40,8 @@ const routes: Routes = [{ HelpComponent, FooterComponent, TermsAndConditionsComponent, - FAQComponent + FAQComponent, + GithubStatsComponent ], imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), diff --git a/site/src/assets/screenshot2.png b/site/src/assets/screenshot2.png new file mode 100644 index 0000000..f7bab84 Binary files /dev/null and b/site/src/assets/screenshot2.png differ diff --git a/site/src/styles.scss b/site/src/styles.scss index eef859f..61e08cc 100644 --- a/site/src/styles.scss +++ b/site/src/styles.scss @@ -40,4 +40,8 @@ a { .underline { text-decoration: underline; +} + +.iframe { + border: none; } \ No newline at end of file