Skip to content

Commit 9db9ce2

Browse files
Fabio BrasileiroFabio Brasileiro
authored andcommitted
blur no menu top e icon discord e wpp
1 parent c764a34 commit 9db9ce2

15 files changed

Lines changed: 1021 additions & 46 deletions

angular.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"src/assets"
2626
],
2727
"styles": [
28+
"@angular/material/prebuilt-themes/indigo-pink.css",
2829
"src/styles.css"
2930
],
3031
"scripts": []
@@ -84,6 +85,7 @@
8485
"src/assets"
8586
],
8687
"styles": [
88+
"@angular/material/prebuilt-themes/indigo-pink.css",
8789
"src/styles.css"
8890
],
8991
"scripts": []

package-lock.json

Lines changed: 900 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111
"private": true,
1212
"dependencies": {
1313
"@angular/animations": "^17.3.0",
14+
"@angular/cdk": "^17.3.1",
1415
"@angular/common": "^17.3.0",
1516
"@angular/compiler": "^17.3.0",
1617
"@angular/core": "^17.3.0",
1718
"@angular/forms": "^17.3.0",
19+
"@angular/material": "^17.3.1",
1820
"@angular/platform-browser": "^17.3.0",
1921
"@angular/platform-browser-dynamic": "^17.3.0",
2022
"@angular/router": "^17.3.0",
23+
"@fortawesome/angular-fontawesome": "^0.14.1",
24+
"angular-font-awesome": "^3.1.2",
2125
"rxjs": "~7.8.0",
2226
"tslib": "^2.3.0",
2327
"zone.js": "~0.14.3"
@@ -38,4 +42,4 @@
3842
"tailwindcss": "^3.4.1",
3943
"typescript": "~5.4.2"
4044
}
41-
}
45+
}

src/app/app.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { ApplicationConfig } from '@angular/core';
22
import { provideRouter } from '@angular/router';
33

44
import { routes } from './app.routes';
5+
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
56

67
export const appConfig: ApplicationConfig = {
7-
providers: [provideRouter(routes)]
8+
providers: [provideRouter(routes), provideAnimationsAsync()]
89
};

src/app/not-found/not-found.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<app-header-landing-page></app-header-landing-page>
2-
<div class="bg-gray-50 dark:bg-gray-900" style="">
2+
<div class="bg-gray-50 dark:bg-gray-900" >
33

44
<div class="m-auto pt-52 pb-60" style="width: 100% !important;">
55

6-
<a target="_blank" href="https://codepen.io/uiswarup/pen/XWGGyWQ">
6+
<a target="_blank" href="#">
77
<div class="">
88
<div class="">
99
<div class="">
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@media screen and (min-width: 1024px) {
2+
.disabled-logo {
3+
display: none;
4+
}
5+
}

src/app/page/header-landing-page/header-landing-page.component.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<header class="fixed w-full">
2-
<nav class="bg-white border-gray-200 py-2.5 dark:bg-gray-900">
1+
<header class="fixed w-full backdrop-blur">
2+
<nav class="bg-white opacity-85 border-gray-200 py-2.5 dark:bg-gray-900">
33
<div class="flex flex-wrap items-center justify-between max-w-screen-xl px-4 mx-auto">
44
<a href="#" class="flex items-center">
5-
<img src="../assets/logo-java-jugle.png" class="h-6 mr-3 sm:h-9" alt="Java juble Logo" />
6-
<!-- <span class="self-center text-xl font-semibold whitespace-nowrap dark:text-white">Java Jungle</span> -->
5+
<img src="../assets/logo-java-jugle.png" class="h-6 mr-3 sm:h-9 disabled-logo" alt="Java juble Logo" />
76
</a>
87
<div class="flex items-center lg:order-2">
98
<div class="hidden mt-2 mr-4 sm:inline-block">
10-
<a class="github-button" href="https://github.com/JavaAmazonas/java-jungle"
11-
data-size="large" data-icon="octicon-star" data-show-count="true"
9+
<a class="github-button" href="https://github.com/JavaAmazonas/java-jungle" data-size="large"
10+
data-icon="octicon-star" data-show-count="true"
1211
aria-label="Star JavaAmazonas/java-jungle on GitHub">Star</a>
1312
</div>
1413
<!-- <a href="#" class="text-gray-800 dark:text-white hover:bg-gray-50 focus:ring-4 focus:ring-gray-300 font-medium rounded-lg text-sm px-4 lg:px-5 py-2 lg:py-2.5 sm:mr-2 dark:hover:bg-gray-700 focus:outline-none dark:focus:ring-gray-800">Log in</a> -->

src/app/page/header-landing-page/header-landing-page.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Component } from '@angular/core';
55
standalone: true,
66
imports: [],
77
templateUrl: './header-landing-page.component.html',
8-
styleUrl: './header-landing-page.component.css'
8+
styleUrl: './header-landing-page.component.css',
99
})
1010
export class HeaderLandingPageComponent {
1111

src/app/page/landing-page-inicio/landing-page-inicio.component.html

Lines changed: 50 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<path
2020
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" />
2121
</svg> View on GitHub
22+
2223
</a>
2324
<a href="https://www.figma.com/file/xRz0DlpnCmCig387Musupw/Comunidade-Java-Amazonas?type=design&node-id=94-7&mode=design&t=IQZIc6jDL7w3j9zp-0"
2425
class="inline-flex items-center justify-center w-full px-5 py-3 mb-2 mr-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg sm:w-auto focus:outline-none hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700">
@@ -445,7 +446,7 @@ <h2 class="text-4xl tracking-tight font-bold text-primary-800">Mas por que parti
445446
<div class="flex flex-col md:flex-row">
446447
<!-- can help image -->
447448
<div class="mr-0 md:mr-8 mb-6 md:mb-0">
448-
<img class="w-1/2 md:w-52 mx-auto" src="../../../assets/doke-noticia.png" alt="can_help_banner">
449+
<img class="w-1/2 md:w-32 mx-auto" src="../../../assets/doke-noticia.png" alt="can_help_banner">
449450
</div>
450451
<!-- end can help image -->
451452

@@ -489,8 +490,7 @@ <h3 class="text-2xl font-bold text-md mb-6">Compartilhamento</h3>
489490
<div class="max-w-screen-xl px-4 py-8 mx-auto lg:py-24 lg:px-6">
490491
<div class="max-w-screen-md mx-auto mb-8 text-center lg:mb-12">
491492
<h2 class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900 dark:text-white">Eventos</h2>
492-
<p class="mb-5 font-light text-gray-500 sm:text-xl dark:text-gray-400">Here at Landwind we focus on markets where
493-
technology, innovation, and capital can unlock long-term value and drive economic growth.</p>
493+
<p class="mb-5 font-light text-gray-500 sm:text-xl dark:text-gray-400">Mergulhe em eventos, workshops e aulas cuidadosamente elaborados para expandir seus horizontes e alimentar sua paixão pelo conhecimento.</p>
494494
</div>
495495

496496
<div class="space-y-8 lg:grid lg:grid-cols- sm:gap-6 xl:gap-10 lg:space-y-0">
@@ -692,13 +692,54 @@ <h3 id="accordion-flush-heading-4">
692692
<section class="bg-gray-50 dark:bg-gray-800">
693693
<div class="max-w-screen-xl px-4 py-8 mx-auto lg:py-16 lg:px-6">
694694
<div class="max-w-screen-sm mx-auto text-center">
695-
<h2 class="mb-4 text-3xl font-extrabold leading-tight tracking-tight text-gray-900 dark:text-white">Start your
696-
free trial today</h2>
697-
<p class="mb-6 font-light text-gray-500 dark:text-gray-400 md:text-lg">Try Landwind Platform for 30 days. No
698-
credit card required.</p>
699-
<a href="#"
695+
<h2 class="mb-4 text-3xl font-extrabold leading-tight tracking-tight text-gray-900 dark:text-white">Contato</h2>
696+
<p class="mb-6 font-light text-gray-500 dark:text-gray-400 md:text-lg"><strong>Quer ficar por dentro de todas as
697+
novidades?</strong> Entre na nossa comunidade do Discord da Java Amazonas para conversar sobre projetos,
698+
eventos e afins.</p>
699+
<!-- <a href="#"
700700
class="text-white bg-purple-700 hover:bg-purple-800 focus:ring-4 focus:ring-purple-300 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-purple-600 dark:hover:bg-purple-700 focus:outline-none dark:focus:ring-purple-800">Free
701-
trial for 30 days</a>
701+
trial for 30 days</a> -->
702+
<div class="items-center justify-center space-y-4 sm:flex sm:space-y-0 sm:space-x-4 rtl:space-x-reverse">
703+
<a href="#"
704+
class="w-full sm:w-auto bg-gray-800 hover:bg-gray-700 focus:ring-4 focus:outline-none focus:ring-gray-300 text-white rounded-lg inline-flex items-center justify-center px-4 py-2.5 dark:bg-gray-700 dark:hover:bg-gray-600 dark:focus:ring-gray-700">
705+
<!-- <svg class="me-3 w-7 h-7" aria-hidden="true" focusable="false" data-prefix="fab" data-icon="apple" role="img"
706+
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
707+
<path fill="currentColor"
708+
d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z">
709+
</path>
710+
</svg> -->
711+
<!-- <img class="me-3 w-7 h-7" src="../../../assets/discord-icon-svgrepo-com.svg" alt=""> -->
712+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor"
713+
class="me-3 w-7 h-7 bi bi-discord" viewBox="0 0 16 16">
714+
<path
715+
d="M13.545 2.907a13.2 13.2 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.2 12.2 0 0 0-3.658 0 8 8 0 0 0-.412-.833.05.05 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.04.04 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032q.003.022.021.037a13.3 13.3 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019q.463-.63.818-1.329a.05.05 0 0 0-.01-.059l-.018-.011a9 9 0 0 1-1.248-.595.05.05 0 0 1-.02-.066l.015-.019q.127-.095.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.05.05 0 0 1 .053.007q.121.1.248.195a.05.05 0 0 1-.004.085 8 8 0 0 1-1.249.594.05.05 0 0 0-.03.03.05.05 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.2 13.2 0 0 0 4.001-2.02.05.05 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.03.03 0 0 0-.02-.019m-8.198 7.307c-.789 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612m5.316 0c-.788 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612" />
716+
</svg>
717+
<div class="text-left rtl:text-right">
718+
<div class="mb-1 text-xs">Discord da comunidade</div>
719+
<div class="-mt-1 font-sans text-sm font-semibold">Java Amazonas</div>
720+
</div>
721+
</a>
722+
<a href="#"
723+
class="w-full sm:w-auto bg-gray-800 hover:bg-gray-700 focus:ring-4 focus:outline-none focus:ring-gray-300 text-white rounded-lg inline-flex items-center justify-center px-4 py-2.5 dark:bg-gray-700 dark:hover:bg-gray-600 dark:focus:ring-gray-700">
724+
<!-- <svg class="me-3 w-7 h-7" aria-hidden="true" focusable="false" data-prefix="fab" data-icon="google-play"
725+
role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
726+
<path fill="currentColor"
727+
d="M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z">
728+
</path>
729+
</svg> -->
730+
<!-- <img class="me-3 w-7 h-7" src="../../../assets/whatsapp-svgrepo-com.svg" alt=""> -->
731+
<!-- <fa name="cog" animation="spin"></fa> -->
732+
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor"
733+
class="bi bi-whatsapp me-3 w-7 h-7" viewBox="0 0 16 16">
734+
<path
735+
d="M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592m3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232" />
736+
</svg>
737+
<div class="text-left rtl:text-right">
738+
<div class="mb-1 text-xs">WhatsApp da comunidade</div>
739+
<div class="-mt-1 font-sans text-sm font-semibold">Java Amazonas</div>
740+
</div>
741+
</a>
742+
</div>
702743
</div>
703744
</div>
704745
</section>

src/app/page/landing-page-inicio/landing-page-inicio.component.ts

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@ import { Component } from '@angular/core';
22
import { HeaderLandingPageComponent } from '../header-landing-page/header-landing-page.component';
33
import { FooterComponent } from '../footer/footer.component';
44
import { SliderEventComponent } from '../slider-event/slider-event.component';
5+
import { AngularFontAwesomeModule } from 'angular-font-awesome';
6+
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
7+
8+
// import { faCoffee } from '@fortawesome/free-solid-svg-icons';
59

610
@Component({
711
selector: 'app-landing-page-inicio',
812
standalone: true,
9-
imports: [HeaderLandingPageComponent, FooterComponent,SliderEventComponent],
13+
imports: [
14+
HeaderLandingPageComponent,
15+
FooterComponent,
16+
SliderEventComponent,
17+
FontAwesomeModule,
18+
],
1019
templateUrl: './landing-page-inicio.component.html',
11-
styleUrl: './landing-page-inicio.component.css'
20+
styleUrl: './landing-page-inicio.component.css',
1221
})
13-
export class LandingPageInicioComponent {
14-
15-
}
22+
export class LandingPageInicioComponent {}

0 commit comments

Comments
 (0)