diff --git a/apps/tax/pages/tax/index.tsx b/apps/tax/pages/tax/index.tsx index f1a3eb8c..e32bf932 100644 --- a/apps/tax/pages/tax/index.tsx +++ b/apps/tax/pages/tax/index.tsx @@ -2,9 +2,11 @@ import React, { useState } from 'react' import { Box, FormStepperV2, Section } from '@island.is/island-ui/core' import FormStepsLayout from '@island.is/tax/screens/Layouts/FormStepsLayout' +import StepFive from '@island.is/tax/screens/Tax/steps/StepFive' +import StepFour from '@island.is/tax/screens/Tax/steps/StepFour' import StepOne from '@island.is/tax/screens/Tax/steps/StepOne' -import StepTwo from '@island.is/tax/screens/Tax/steps/StepTwo' import StepThree from '@island.is/tax/screens/Tax/steps/StepThree' +import StepTwo from '@island.is/tax/screens/Tax/steps/StepTwo' const steps = [ { title: 'Gagnaöflun', index: 0 }, @@ -42,9 +44,9 @@ const Tax = ({ taxInfo }) => { case 2: return case 3: - return
Step4
+ return case 4: - return
Step5
+ return case 5: return
Step6
case 6: diff --git a/apps/tax/screens/Tax/steps/StepFive.tsx b/apps/tax/screens/Tax/steps/StepFive.tsx new file mode 100644 index 00000000..76b1225c --- /dev/null +++ b/apps/tax/screens/Tax/steps/StepFive.tsx @@ -0,0 +1,174 @@ +import { + AlertMessage, + Box, + GridColumn, + GridContainer, + GridRow, + Input, + Text, +} from '@island.is/island-ui/core' + +import Buttons from '../Buttons' + +type StepFiveProps = { + onForward: () => void + onBackward: () => void +} + +const StepFive = ({ onForward, onBackward }: StepFiveProps) => { + return ( + + + Vaxtagjöld vegna íbúðarhúsnæðis til eigin nota + + + + + + + + Upplýsingar um eign + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +} + +export default StepFive diff --git a/apps/tax/screens/Tax/steps/StepFour.tsx b/apps/tax/screens/Tax/steps/StepFour.tsx new file mode 100644 index 00000000..4752d394 --- /dev/null +++ b/apps/tax/screens/Tax/steps/StepFour.tsx @@ -0,0 +1,93 @@ +import { + Box, + Button, + GridColumn, + GridContainer, + GridRow, + Input, + Text, +} from '@island.is/island-ui/core' + +import Buttons from '../Buttons' + +type StepFourProps = { + onForward: () => void + onBackward: () => void +} + +const StepFour = ({ onForward, onBackward }: StepFourProps) => { + return ( + + + Innlendar fasteignir + + + + + + Fastanúmer eignar + + + + Staðsetning eignar + + + + Fasteignamat 2024 + + + + + + + + + + + + + + + + +