-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/feg 526 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Feature/feg 526 #32
Changes from all commits
748d89a
c52bc29
3719a13
cf13848
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
<script lang="ts" setup> | ||
import card1Img from '@/assets/images/illustrations/product-team-card.png' | ||
import card2Img from '@/assets/images/illustrations/design-graphic.jpg' | ||
import card3Img from '@/assets/images/illustrations/development-graphic.jpg' | ||
import IamCard from '@/components/content/IamCard.vue' | ||
import HeroSection from '@/components/content/HeroSection.vue' | ||
import TextMediaSection from '@/components/content/TextMediaSection.vue' | ||
import CardContainer from '~/components/content/CardContainer.vue' | ||
|
||
</script> | ||
|
||
<template> | ||
<main> | ||
<HeroSection> | ||
<template #text> | ||
<h1>Design for our Customers</h1> | ||
<div class="lorem-text"><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna alLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna al.</strong></div> | ||
</template> | ||
</HeroSection> | ||
<div class="make-it visualtest colour-block bg-info gradient-primary gradient-direction-angle"> | ||
<div> | ||
<img class="intuitive-card" src="assets/images/illustrations/Intuitive.png" alt="intuitive-image"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would suggest using a single class for all of these since they share the same CSS. Something like .principle-card |
||
</div> | ||
|
||
<div> | ||
<img class="empowering-card" src="assets/images/illustrations/Empowering.png" alt="empowering-image"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alt text should describe what's happening in the image or perhaps in this case, include the text from the image e.g., "Make it intuitive' |
||
</div> | ||
|
||
<div> | ||
<img class="delighful-card" src="assets/images/illustrations/Delightful.png" alt="delightful-image"> | ||
</div> | ||
</div> | ||
|
||
<TextMediaSection> | ||
<template #text> | ||
<h2>Intuitive</h2> | ||
<p>Our products are made easy to use by intuitive interconnectivity, simplifying complexity, and streamlining efficiency, so our customers can do more quicker and be effective during their day.</p> | ||
|
||
<h4>iamproperty values</h4> | ||
<ul class="iap-values"> | ||
<li class="values">Effective</li> | ||
<li class="values">Collaborative</li> | ||
<li class="values">Customer focused</li> | ||
</ul> | ||
</template> | ||
<template #media> | ||
<div class="grey-square"></div> | ||
</template> | ||
</TextMediaSection> | ||
|
||
|
||
<TextMediaSection :media-first="true"> | ||
<template #text> | ||
<div class="empowering-text"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instead of setting the order on this div, you should be able to change the :media-first prop to false on line 52. |
||
<h2>Empowering</h2> | ||
<p>Our products empower through incentivising, loyalty and actionable insight which allows customers to take control in shaping their path within the products.</p> | ||
|
||
<h4>iamproperty values</h4> | ||
<ul class="iap-values"> | ||
<li class="values">Effective</li> | ||
<li class="values">Collaborative</li> | ||
<li class="values">Customer focused</li> | ||
</ul> | ||
</div> | ||
</template> | ||
<template #media> | ||
<div class="grey-square-empowering"></div> | ||
</template> | ||
</TextMediaSection> | ||
|
||
<TextMediaSection> | ||
<template #text> | ||
<h2>Delightful</h2> | ||
<p>Our products are built with meaningful interactions and beautiful design which combine to deliver an enrich experience for our customers across the ecosystem.</p> | ||
|
||
<h4>iamproperty values</h4> | ||
<ul class="iap-values"> | ||
<li class="values">Effective</li> | ||
<li class="values">Collaborative</li> | ||
<li class="values">Customer focused</li> | ||
</ul> | ||
</template> | ||
|
||
<template #media> | ||
<div class="grey-square"></div> | ||
</template> | ||
</TextMediaSection> | ||
|
||
<div class="principles"> | ||
<h3>Specific team principles</h3> | ||
</div> | ||
<CardContainer> | ||
<div class="col"> | ||
<NuxtLink> | ||
<IamCard :data-image="card2Img"> | ||
Product Design<span>Here would be the top level description</span> | ||
</IamCard> | ||
</NuxtLink> | ||
</div> | ||
|
||
<div class="col"> | ||
<NuxtLink> | ||
<IamCard :data-image="card1Img"> | ||
Content Design<span>Here would be the top level description</span> | ||
</IamCard> | ||
</NuxtLink> | ||
</div> | ||
|
||
<div class="col"> | ||
<NuxtLink> | ||
<IamCard :data-image="card3Img"> | ||
Frontend Tech<span>Responsible for building, and maintaining the user-facing aspects of web applications</span> | ||
</IamCard> | ||
</NuxtLink> | ||
</div> | ||
</CardContainer> | ||
</main> | ||
</template> | ||
|
||
<style> | ||
/* top */ | ||
h1, .lorem-text { | ||
text-align: center; | ||
} | ||
|
||
.lorem-text { | ||
width: 70%; | ||
margin: 0 auto; | ||
} | ||
/* middle */ | ||
|
||
.make-it{ | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: row; | ||
grid-column: 1 / -1; | ||
padding: 50px; | ||
gap: 1rem; | ||
} | ||
|
||
.intuitive-card, .empowering-card, .delightful-card{ | ||
border-radius: 4px; | ||
} | ||
|
||
.iap-values { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 10px; | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.values { | ||
border: 1px solid #9D9D9D; | ||
color: #00313C; | ||
border-radius: 4px; | ||
padding: 5px; | ||
} | ||
|
||
.grey-square { | ||
background-color: #9D9D9D; | ||
width: 32rem; | ||
max-width: 100%; | ||
border-radius: 12px; | ||
flex-shrink: 0; | ||
height: 20rem; | ||
} | ||
|
||
.grey-square-empowering { | ||
background-color: #9D9D9D; | ||
width: 32rem; | ||
max-width: 100%; | ||
border-radius: 12px; | ||
flex-shrink: 0; | ||
height: 20rem; | ||
} | ||
|
||
/* bottom */ | ||
.col { | ||
display: flex; | ||
justify-content: center; | ||
flex: 1 | ||
} | ||
|
||
.principles { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
/* media queries */ | ||
|
||
@media (max-width: 768px) { | ||
.make-it { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.make-it > div { | ||
width: 100%; | ||
} | ||
|
||
.grey-square-empowering { | ||
width: 100%; | ||
min-height: 302px; | ||
margin-left: 0; | ||
margin-top: 1rem; | ||
order: 2; | ||
} | ||
.empowering-text { | ||
order: 1; | ||
} | ||
|
||
.grey-square { | ||
width: 100%; | ||
min-height: 302px; | ||
margin-left: 0; | ||
margin-top: 1rem; | ||
} | ||
} | ||
</style> |
Uh oh!
There was an error while loading. Please reload this page.