-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: preferences page, styling, and routing between onboarding (#11)
* feat: preferences page, styling, and routing between onboarding * style: layout for onboarding folders, styling tweaks * styling: changed font of button
- Loading branch information
Showing
6 changed files
with
105 additions
and
39 deletions.
There are no files selected for viewing
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
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,25 @@ | ||
'use client'; | ||
|
||
import styled from 'styled-components'; | ||
|
||
export const UpdateContainer = styled.main` | ||
display: flex; | ||
flex-direction: row; | ||
align-items: flex-start; | ||
margin-top: 0.5rem; | ||
`; | ||
|
||
export const Checkbox = styled.input` | ||
width: 25px; | ||
height: 25px; | ||
border-style: solid; | ||
`; | ||
|
||
export const UpdateText = styled.text` | ||
text-align: left; | ||
margin-left: 15px; | ||
`; | ||
|
||
export const RedAsterisk = styled.span` | ||
color: #b22222; | ||
`; |
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,51 @@ | ||
import Link from 'next/link'; | ||
import Back from '@/assets/images/back.svg'; | ||
import { | ||
Background, | ||
ButtonContainer, | ||
Container, | ||
ContinueButton, | ||
ContinueText, | ||
Image, | ||
InlineContainer, | ||
Input, | ||
Rectangle, | ||
Title, | ||
} from '../styles'; | ||
|
||
export default function Onboarding() { | ||
return ( | ||
<Background> | ||
<InlineContainer> | ||
<Link href="/onboarding/general" passHref> | ||
<Image src={Back} alt="Back icon" /> | ||
</Link> | ||
|
||
<div> | ||
<Rectangle variant="light" widthPercentage="50%" /> | ||
<Rectangle variant="dark" widthPercentage="50%" /> | ||
</div> | ||
<Container> | ||
<Title>Help us tailor shows to you!</Title> | ||
<text>Facility Type</text> | ||
<Input /> | ||
<text>Preferred Location</text> | ||
<Input /> | ||
<text>Audience</text> | ||
<Input /> | ||
<text>Preferred Equipment</text> | ||
<Input /> | ||
<text>Type of Act</text> | ||
<Input /> | ||
<text>Genre</text> | ||
<Input /> | ||
</Container> | ||
<ButtonContainer> | ||
<ContinueButton> | ||
<ContinueText>Continue</ContinueText> | ||
</ContinueButton> | ||
</ButtonContainer> | ||
</InlineContainer> | ||
</Background> | ||
); | ||
} |
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