Skip to content

Commit

Permalink
Development (#313)
Browse files Browse the repository at this point in the history
* automated testing

* chrome headless

* remove test output

* fix navigation on refresh

* finish about us content

* Delete tests_output/nightwatch-html-report directory

Signed-off-by: usiiasirrush <[email protected]>

* Update docker-image.yml

Signed-off-by: usiiasirrush <[email protected]>

* use reporter

* coveratge report

* Update docker-image.yml

Signed-off-by: usiiasirrush <[email protected]>

* fix screen display issue

* Update and rename docker-image.yml to integration-testing.yml

Signed-off-by: usiiasirrush <[email protected]>

* fix builds

* Update README.md

Signed-off-by: usiiasirrush <[email protected]>

* Update README.md

Signed-off-by: usiiasirrush <[email protected]>

* add developer tools

* prune

* Create CODE_OF_CONDUCT.md

Signed-off-by: usiiasirrush <[email protected]>

* Update docker-build.yml

Signed-off-by: usiiasirrush <[email protected]>

* cleanup

* Create dependabot.yml

Signed-off-by: usiiasirrush <[email protected]>

* Update and rename GETTING-STARTED.md to GETTING_STARTED.md

Signed-off-by: usiiasirrush <[email protected]>

* Delete codeql.yml

Signed-off-by: usiiasirrush <[email protected]>

* Make Membership Zone page

* fit text in card

* Link unfinished pages to current site

* add research and format

* Center buttons on membership zone

* Accessibility enhancements and icons

* left align all cards

* Fix Floating icons on Membership Zone (#290)

* Staging (#288) (#294)

* automated testing

* chrome headless

* remove test output

* fix navigation on refresh

* finish about us content

* Delete tests_output/nightwatch-html-report directory



* Update docker-image.yml



* use reporter

* coveratge report

* Update docker-image.yml



* fix screen display issue

* Update and rename docker-image.yml to integration-testing.yml



* fix builds

* Update README.md



* Update README.md



* add developer tools

* prune

* Create CODE_OF_CONDUCT.md



* Update docker-build.yml



* cleanup

* Create dependabot.yml



* Update and rename GETTING-STARTED.md to GETTING_STARTED.md



* Delete codeql.yml



* Make Membership Zone page

* fit text in card

* Link unfinished pages to current site

* add research and format

* Center buttons on membership zone

* Accessibility enhancements and icons

* left align all cards

---------

Signed-off-by: usiiasirrush <[email protected]>

* Update staging.yml

Signed-off-by: usiiasirrush <[email protected]>

* Research Page (#299)

* Code Cleanup

* unsaved

* SEO and Accessibility (#302)

SEO meta tag and Accessibility for images by changing them to svg

* Code Cleanup

* Code Cleanup

* Package Cleanup

* Package pruning

* more package pruning

* Update SECURITY.md

Signed-off-by: usiiasirrush <[email protected]>

* Add SVGs for social images (#308)

* Feature/volunteer jot forms (#311)

* Add jotforms and fix test

* format and fix redirect (#312)

* Jotforms contact us (#314)

---------

Signed-off-by: usiiasirrush <[email protected]>
  • Loading branch information
UsiDiamond authored Jul 24, 2023
1 parent e85829e commit de30391
Show file tree
Hide file tree
Showing 7 changed files with 774 additions and 53 deletions.
1 change: 0 additions & 1 deletion integration-testing/step_definitions/basic.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
const { Before, Given, Then, When } = require("@cucumber/cucumber");
const { HomePage } = require("../pages/home.po");

var expect = chai.expect;
Before(function (scenario, callback) {
this.homepage = new HomePage();

Expand Down
16 changes: 2 additions & 14 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,7 @@
></ng-template>
</li>
<li [ngbNavItem]="5">
<button
onClick="location.href='https://neurodiversityinbusiness.org/join-us/'"
id="volunteerButton"
ngbNavLink
>
Volunteer With Us
</button>
<button id="volunteerButton" ngbNavLink>Volunteer With Us</button>
<ng-template ngbNavContent>
<app-volunteer-start></app-volunteer-start
></ng-template>
Expand All @@ -80,13 +74,7 @@
<ng-template ngbNavContent> <app-hub></app-hub></ng-template>
</li>
<li [ngbNavItem]="7">
<button
onClick="location.href='https://neurodiversityinbusiness.org/contact-us/'"
id="contactButton"
ngbNavLink
>
Contact Us
</button>
<button id="contactButton" ngbNavLink>Contact Us</button>
<ng-template ngbNavContent>
<app-contact-us></app-contact-us
></ng-template>
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class AppComponent implements OnInit, AfterViewInit {
private displayContentService: DisplayContentService,
private router: Router
) {}

ngOnInit() {
if (window.innerWidth <= 991) {
this.isMobileLayout = true;
Expand Down
36 changes: 1 addition & 35 deletions src/app/contact-us/contact-us.component.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
h1,
h2 {
h1 {
font-family: "Montserrat", Sans-serif;
font-weight: bold;
background: #07a797;
Expand All @@ -8,36 +7,3 @@ h2 {
text-align: left;
padding: 40px;
}

h3 {
text-align: center;
}

.card-title {
text-align: center;
color: aliceblue;
font-size: 26px;
font-weight: bold;
}
.card-text {
text-align: left;
color: aliceblue;
font-weight: bold;
}

.card {
width: 18rem;
height: 18rem;
background-color: purple;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card:hover {
background-color: magenta;
}

.blurbs {
justify-content: space-between;
flex-direction: column;
display: flex;
}
Loading

0 comments on commit de30391

Please sign in to comment.