Mostly added a contact page instead of direct mail link. But lots of little things mostly around cleanup too.
This commit is contained in:
parent
d2db2037f4
commit
4e1a13b537
18 changed files with 905 additions and 859 deletions
|
|
@ -30,9 +30,19 @@ export class AboutController extends BaseController {
|
|||
'Alan started Bridgeman Accessible because he saw over and over again companies that were lead by non-disabled people and non-developers trying to solve digital accessibility problems. ' +
|
||||
'Moreover, they would only every consult or give advice but never build or innovate in ways that would help the community and the industry in a meaningful and impactful way.',
|
||||
image: 'alan.jpeg',
|
||||
website: 'https://alanbridgeman.ca/',
|
||||
email: 'alan@alanbridgeman.ca'
|
||||
//website: 'https://alanbridgeman.ca/',
|
||||
email: 'alan@bridgemanaccessible.com',
|
||||
phone: '+1 (431) 478-1655 Ext. 200'
|
||||
},
|
||||
{
|
||||
fname: 'Mohamed',
|
||||
lname: 'Behi',
|
||||
position: 'Vice President (Training & Education)',
|
||||
bio: '' +
|
||||
'Mohamed is a passionate advocate for disability rights and accessibility. He has been involved in the disability community for many years, working with various organizations to promote inclusion and accessibility. ',
|
||||
email: 'mohamed@bridgemanaccessible.com',
|
||||
phone: '+1 (431) 478-1655 Ext. 201'
|
||||
}
|
||||
//{
|
||||
// fname: 'John',
|
||||
// lname: 'Oberton',
|
||||
|
|
|
|||
16
src/routes/ContactController.ts
Normal file
16
src/routes/ContactController.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { Request, Response } from 'express';
|
||||
import { Controller, GET, Page, BaseController } from '@BridgemanAccessible/ba-web-framework';
|
||||
|
||||
/** The ContactController class is responsible for handling the contact page of the site. */
|
||||
@Controller()
|
||||
export class ContactController extends BaseController {
|
||||
/**
|
||||
* Route for rendering the contact page.
|
||||
*
|
||||
* @param req The request object.
|
||||
* @param res The response object.
|
||||
*/
|
||||
@Page('Contact', 'contact.ejs', [], ['contact'])
|
||||
@GET('/contact')
|
||||
private contact(req: Request, res: Response) {}
|
||||
}
|
||||
|
|
@ -22,7 +22,7 @@ export class HomeController extends BaseController {
|
|||
};
|
||||
}
|
||||
|
||||
@Page('New Design', 'new-design-3.ejs', [], ['new-design-3'])
|
||||
@GET('/new-design')
|
||||
private newPage(req: Request, res: Response) {}
|
||||
//@Page('New Design', 'new-design-3.ejs', [], ['new-design-3'])
|
||||
//@GET('/new-design')
|
||||
//private newPage(req: Request, res: Response) {}
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@ export class ServicesController extends BaseController {
|
|||
* @param req The request object.
|
||||
* @param res The response object.
|
||||
*/
|
||||
@Page('Services', 'services.ejs')
|
||||
@Page('Services', 'services.ejs', [], ['services'])
|
||||
@GET('/services')
|
||||
private services(req: Request, res: Response) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue