Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion constants/navlinks/navlinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const NAVLINKS = [
},
{
name: 'Join Our Team',
href: 'https://linktr.ee/WATOLINK',
href: '/join',
//href: 'https://linktr.ee/WATOLINK',
accent: true,
},
]
Expand Down
56 changes: 33 additions & 23 deletions pages/contact.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import styled from 'styled-components';
import Head from 'next/head'
import CONTACTS from '../constants/contactinfo/contactinfo';
import { FontIcons } from '../components/Common';
import Image from 'next/image'
Expand Down Expand Up @@ -76,28 +77,37 @@ const ImageWrap = styled.span`

export default function ContactCard() {
return (
<Card>
<HeroContainer>
<ImageWrap>
<Image
alt="WATOLINK big logo"
src={BigGoose}
layout="fixed"
/>
</ImageWrap>
</HeroContainer>
<Title>Get In Touch</Title>
<br /><br />
{CONTACTS.map((contact, index) => (
<LineContainer key={index}>
<Text><strong>{contact.type}&nbsp;</strong></Text>
<Text>{contact.info}</Text>
</LineContainer>
))}
<br />
<SocialMediaIcons>
<FontIcons />
</SocialMediaIcons>
</Card>
<>
<Head>
<title>Contact | WATOLINK</title>
<meta
name="description"
content="Generated by create next app"
/>
</Head>
<Card>
<HeroContainer>
<ImageWrap>
<Image
alt="WATOLINK big logo"
src={BigGoose}
layout="fixed"
/>
</ImageWrap>
</HeroContainer>
<Title>Get In Touch</Title>
<br /><br />
{CONTACTS.map((contact, index) => (
<LineContainer key={index}>
<Text><strong>{contact.type}&nbsp;</strong></Text>
<Text>{contact.info}</Text>
</LineContainer>
))}
<br />
<SocialMediaIcons>
<FontIcons />
</SocialMediaIcons>
</Card>
</>
);
}
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export default function About() {
<ContentContainer>
<Container1>
<InfoContainer>
<Info heading="30+" subheading="Members">
<Info heading="20+" subheading="Members">
Future projects may involve developing our own
sensor technology and BCI hardware. The efforts of
this team could eventually go towards graduate
Expand Down
Loading