diff --git a/app/contact-page/page.tsx b/app/contact-page/page.tsx index 7b23e7ea..27c47c96 100644 --- a/app/contact-page/page.tsx +++ b/app/contact-page/page.tsx @@ -15,63 +15,74 @@ import { Typography, Box, TextField, Button } from "@mui/material"; const Contact = () => { return ( - - - Contact Us - - - - Address - - - 9600 College Way N,
- Seattle, WA, 98103 -
- - - Email - - - Add belinda closet email info here - - - - Phone - - - (206) 934-3600 - - - - Get in Touch With Us - - - - - - + + + + Contact Us + + + + + + + + Get in Touch With Us + + + + + + + + + + Email: edi.north@seattlecolleges.edu

+ Phone: (206) 934-3719 +
+
+
+ + + + +
); }; -export default Contact; \ No newline at end of file +export default Contact; + diff --git a/tests/unit/contact-page/contactpage.test.tsx b/tests/unit/contact-page/contactpage.test.tsx index 7361a2c5..4656d66e 100644 --- a/tests/unit/contact-page/contactpage.test.tsx +++ b/tests/unit/contact-page/contactpage.test.tsx @@ -18,9 +18,9 @@ describe('Contact component', () => { test('renders correctly', () => { render(); - expect(Typography).toHaveBeenCalledTimes(8); - expect(Box).toHaveBeenCalledTimes(3); - expect(TextField).toHaveBeenCalledTimes(4); // Adjusted the expectation to match the number of TextField components + expect(Typography).toHaveBeenCalledTimes(3); + expect(Box).toHaveBeenCalledTimes(8); // Adjusted the expectation to match the number of Box components + expect(TextField).toHaveBeenCalledTimes(5); // Adjusted the expectation to match the number of TextField components expect(Button).toHaveBeenCalledTimes(1); }); });