-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from Nicoly-Almeida/programacao
Programacao
- Loading branch information
Showing
66 changed files
with
985 additions
and
398 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = []; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forRoot(routes)], | ||
exports: [RouterModule] | ||
}) | ||
export class AppRoutingModule { } | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { LayoutComponent } from './pages/layout/layout.component'; | ||
import { ProgramacaoComponent } from './pages/programacao/programacao.component'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: "", | ||
component: LayoutComponent | ||
}, | ||
{ | ||
path: "programacao", | ||
component: ProgramacaoComponent | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forRoot(routes)], | ||
exports: [RouterModule] | ||
}) | ||
export class AppRoutingModule { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
<app-navbar></app-navbar> | ||
<app-header></app-header> | ||
<app-evento></app-evento> | ||
<app-palestrantes></app-palestrantes> | ||
<app-parcerias></app-parcerias> | ||
<app-navbar></app-navbar> | ||
<app-header></app-header> | ||
<router-outlet></router-outlet> | ||
<app-footer></app-footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,52 @@ | ||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { AppRoutingModule } from './app-routing.module'; | ||
import { AppComponent } from './app.component'; | ||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; | ||
import { HttpClientModule } from '@angular/common/http'; | ||
import { MaterialModule } from './shared/material/material.module'; | ||
import { NavbarComponent } from './components/navbar/navbar.component'; | ||
import { HeaderComponent } from './pages/header/header.component'; | ||
import { EventoComponent } from './pages/evento/evento.component'; | ||
import { PalestrantesComponent } from './pages/palestrantes/palestrantes.component'; | ||
import { CarouselModule } from 'primeng/carousel'; | ||
import { ParceriasComponent } from './pages/parcerias/parcerias.component'; | ||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { AppRoutingModule } from './app-routing.module'; | ||
import { AppComponent } from './app.component'; | ||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; | ||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; | ||
import { HttpClientModule } from '@angular/common/http'; | ||
import { MaterialModule } from './shared/material/material.module'; | ||
import { NavbarComponent } from './components/navbar/navbar.component'; | ||
import { HeaderComponent } from './pages/header/header.component'; | ||
import { EventoComponent } from './pages/evento/evento.component'; | ||
import { PalestrantesComponent } from './pages/palestrantes/palestrantes.component'; | ||
import { CarouselModule } from 'primeng/carousel'; | ||
import { ParceriasComponent } from './pages/parcerias/parcerias.component'; | ||
import { FooterComponent } from './components/footer/footer.component'; | ||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
AppComponent, | ||
NavbarComponent, | ||
HeaderComponent, | ||
EventoComponent, | ||
PalestrantesComponent, | ||
ParceriasComponent, | ||
FooterComponent | ||
], | ||
imports: [ | ||
BrowserModule, | ||
AppRoutingModule, | ||
BrowserAnimationsModule, | ||
FormsModule, | ||
ReactiveFormsModule, | ||
HttpClientModule, | ||
MaterialModule, | ||
CarouselModule | ||
], | ||
providers: [], | ||
schemas: [CUSTOM_ELEMENTS_SCHEMA], | ||
bootstrap: [AppComponent] | ||
}) | ||
import { VoluntariosComponent } from './pages/voluntarios/voluntarios.component'; | ||
import { LocalComponent } from './pages/local/local.component'; | ||
import { PatrocinioComponent } from './pages/patrocinio/patrocinio.component'; | ||
import { ProgramacaoComponent } from './pages/programacao/programacao.component'; | ||
import { LayoutComponent } from './pages/layout/layout.component'; | ||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
AppComponent, | ||
NavbarComponent, | ||
HeaderComponent, | ||
EventoComponent, | ||
PalestrantesComponent, | ||
ParceriasComponent, | ||
FooterComponent, | ||
VoluntariosComponent, | ||
LocalComponent, | ||
PatrocinioComponent, | ||
ProgramacaoComponent, | ||
LayoutComponent | ||
], | ||
imports: [ | ||
BrowserModule, | ||
AppRoutingModule, | ||
BrowserAnimationsModule, | ||
FormsModule, | ||
ReactiveFormsModule, | ||
HttpClientModule, | ||
MaterialModule, | ||
CarouselModule | ||
], | ||
providers: [], | ||
schemas: [CUSTOM_ELEMENTS_SCHEMA], | ||
bootstrap: [AppComponent] | ||
}) | ||
export class AppModule { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
a { | ||
color: var(--Black, #303031); | ||
font-family: 'Product Sans', sans-serif; | ||
font-size: 20px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: normal; | ||
letter-spacing: -0.4px; | ||
} | ||
|
||
.nav-item{ | ||
display: flex; | ||
align-content: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.navbar{ | ||
background-color: #FBBC04 !important; | ||
} | ||
|
||
.primary_button{ | ||
background-color: #4285F4 !important; | ||
color: #FFF !important; | ||
font-family: 'Product Sans', sans-serif !important; | ||
font-size: 18px !important; | ||
font-style: normal; | ||
line-height: normal; | ||
letter-spacing: -0.36px; | ||
padding: 12px 16px; | ||
height: 100%; | ||
} | ||
|
||
a { | ||
color: #FFF; | ||
font-family: 'Product Sans', sans-serif; | ||
font-size: 18px; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: normal; | ||
letter-spacing: -0.4px; | ||
} | ||
|
||
.nav-item{ | ||
display: flex; | ||
align-content: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.navbar{ | ||
background-color: #FBBC04 !important; | ||
} | ||
|
||
.primary_button{ | ||
background-color: #4285F4 !important; | ||
color: #FFF !important; | ||
font-family: 'Product Sans', sans-serif !important; | ||
font-size: 18px !important; | ||
font-style: normal; | ||
line-height: normal; | ||
letter-spacing: -0.36px; | ||
padding: 12px 16px; | ||
height: 100%; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<div class="me-lg-5 ms-lg-5 me-md-3 ms-md-3 me-2 ms-2 mt-lg-5 mt-3" id="1"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="d-flex titulo"> | ||
<img src="/assets/icon_title.svg" class="icon_title"/> | ||
<div class="ms-4 d-flex align-content-center flex-wrap"> | ||
<h1> O Evento </h1> | ||
</div> | ||
</div> | ||
<div> | ||
<h2 style="margin-top: 24px; margin-bottom: 24px;"> Não sei, só sei que foi assim</h2> | ||
<p> | ||
DevFests são eventos de tecnologia organizados anualmente por comunidades de desenvolvedores, os Google Developer Groups (GDGs), no mundo inteiro. | ||
</p> | ||
<p> | ||
Nos últimos anos, as comunidades dos Estados do Nordeste resolveram se unir para realizar o <strong>DevFest Nordeste</strong>, dando destaque aos talentos locais e também promovendo a troca de conhecimentos entre os participantes. | ||
</p> | ||
<p> | ||
O evento tem como público alvo profissionais de tecnologia, estudantes, e empresários, e aborda tanto conhecimentos técnicos, quanto questões como diversidade, soft skills e experiências profissionais. | ||
</p> | ||
</div> | ||
</div> | ||
<div class="col-md-6 d-none d-md-block"> | ||
<img src="/assets/image_evento.svg" class="image_nordeste"> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="me-lg-5 ms-lg-5 me-md-3 ms-md-3 me-2 ms-2 mt-lg-5 mt-3" id="1"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="d-flex titulo"> | ||
<img src="/assets/icon_title.svg" class="icon_title"/> | ||
<div class="ms-4 d-flex align-content-center flex-wrap"> | ||
<h1> O Evento </h1> | ||
</div> | ||
</div> | ||
<div> | ||
<h2 style="margin-top: 24px; margin-bottom: 24px;"> Não sei, só sei que foi assim</h2> | ||
<p> | ||
DevFests são eventos de tecnologia organizados anualmente por comunidades de desenvolvedores, os Google Developer Groups (GDGs), no mundo inteiro. | ||
</p> | ||
<p> | ||
Nos últimos anos, as comunidades dos Estados do Nordeste resolveram se unir para realizar o <strong>DevFest Nordeste</strong>, dando destaque aos talentos locais e também promovendo a troca de conhecimentos entre os participantes. | ||
</p> | ||
<p> | ||
O evento tem como público alvo profissionais de tecnologia, estudantes, e empresários, e aborda tanto conhecimentos técnicos, quanto questões como diversidade, soft skills e experiências profissionais. | ||
</p> | ||
</div> | ||
</div> | ||
<div class="col-md-6 d-none d-md-block"> | ||
<img src="/assets/image_evento.svg" class="image_nordeste"> | ||
</div> | ||
</div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div class="d-flex justify-content-center" style="margin-top: -80px"> | ||
<a routerLink="/programacao" style="cursor:pointer"> | ||
<img src="/assets/programacao.png" width="100%"> | ||
</a> | ||
</div> | ||
<app-evento></app-evento> | ||
<app-palestrantes></app-palestrantes> | ||
<app-parcerias></app-parcerias> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { LayoutComponent } from './layout.component'; | ||
|
||
describe('LayoutComponent', () => { | ||
let component: LayoutComponent; | ||
let fixture: ComponentFixture<LayoutComponent>; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [LayoutComponent] | ||
}); | ||
fixture = TestBed.createComponent(LayoutComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-layout', | ||
templateUrl: './layout.component.html', | ||
styleUrls: ['./layout.component.scss'] | ||
}) | ||
export class LayoutComponent { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>local works!</p> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { LocalComponent } from './local.component'; | ||
|
||
describe('LocalComponent', () => { | ||
let component: LocalComponent; | ||
let fixture: ComponentFixture<LocalComponent>; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [LocalComponent] | ||
}); | ||
fixture = TestBed.createComponent(LocalComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-local', | ||
templateUrl: './local.component.html', | ||
styleUrls: ['./local.component.scss'] | ||
}) | ||
export class LocalComponent { | ||
|
||
} |
Oops, something went wrong.