SlideShare une entreprise Scribd logo
1  sur  111
Télécharger pour lire hors ligne
Design Processes &
Systems in Craft
Courtney Bradford
Co-Founder & Designer, Telegraph
DotAll 2018 Berlin, Germany
Introduction
● ● ● ●
Courtney Bradford
Web Designer
Courtney Bradford
Web Designer
Courtney Bradford
Web Designer
Interface Designer
Courtney Bradford
Web Designer
Interface Designer
Courtney Bradford
Web Designer
Interface Designer
UX/UI Designer
Let’s Talk About
Design Systems
● ● ● ●
Design Systems
aren’t just for
Silicon Valley
and enterprises.
A Design System helps you…
Encourage collaboration
Design consistently
Manage your debt
Improve usability & accessibility
Release new features faster
Learn and iterate more quickly 
Focus on opportunities for impact
A Design System
can help us, create
better experiences
for people. 
“Styles come and go. Good design is a
language, not a style.”
MASSIMO VIGNELLI
Custom layout design
for each page.
Before smart phones made “responsive
design” necessary, there was little
consideration given to flexible, consistent
interface design.
CSS Frameworks
Style Tiles
Atomic Design
UI Kits
What makes a Design System
different from a UI Kit?
Google Material
A UI Kit begins and ends with
visual presentation.
The HOW without the WHY.
Design Systems
Story First
“I think what’s most important is you
have to have a North Star or vision set.
If people don’t have that,
the mess builds up.”  
STANLEY WOOD
SPOTIFY 
North Star
Our goal with this is to move everyone towards a
common destination and give context to our work.
Courtesy of Shopify Polaris
“A good set of principles encodes that so everyone
can have this shared sense of what’s important for us
and what’s true to us. When push comes to shove and
you have to make a trade off, how are you, in those
moments, as a team or a company going to prioritize?
What are you going to care about the most?”
JULIE ZHUO
FACEBOOK
Core Styles
Core styles are how we establish
brand guidelines for our
components and templates.
Components
Components are the lego blocks of
our interface.
Standards
Standards are our guidelines for
how the components should be used
in application.
Don’t focus on scale.
Focus on impact and outcomes.
Let’s Create
A Design System
● ● ● ●
For Humans
By Humans
You can’t deliver the right solution
if you don’t understand customer
needs.
First, ask questions. Later, test
your designs to get feedback.
Know What You’re
Working With
• Document (screenshot) every
component
• Organize components
• Present to team/stakeholders
• Identify opportunities to unify
and simplify
Photo courtesy of InVision
VisionVision
Guidelines
Core Styles
Components
Vision
North Star
Making the world's information
accessible to everyone, regardless
of the language they speak.
Envisioned Future
North Star
Making the world's information
accessible to everyone, regardless
of the language they speak.
Core Ideology
North Star
Making the world's information
accessible to everyone, regardless
of the language they speak.
Vision
Guidelines
Core Styles
Components
Guidelines
Guidelines
Design Principles
Universal
Lilt is a global multi-
lingual company helping
businesses remove
language as a barrier. Our
design language should be
as approachable,
accessible, and iconic.
Unified
Each piece is part of a
greater whole and
uniquely contributes to
our "human-in-loop"
methodology. Our design
language should be
consistent and
connected, shying away
from isolated outliers.
Pioneering
We pioneering technical
innovations for
translation services that
surprise and delight. We
introduce the
unexpected, but always
as a means of
empowering our
customers.
Design Principles
Human
Because machines aren't
enough, it's our humanity
and capacity for empathy
that connects us. Our
design language should
communicate with users
in a familiar, human tone.
Efficient
We value our customer's
time and recognize that a
faster experience feels
like an effortless one. Our
site should move as fast
as we do. Transitions
should be efficient and
coherent.
Vision
Guidelines
Core Styles
Components
Core Styles
Core Styles
Typography
• Typefaces
• Weights
• Hierarchy
• Scale
Colors
• Palette
• Usage Guidelines
• Accessibility Best Practices
Patterns, Gradients, Shadows
UI Icons
UI icons should be
universally recognizable
shapes and scale smoothly
(remain clear at any size).
Names should be logical and
easy to recall.
Spot Icons
Spot icons are used to
communicate concepts and
are typically displayed at
larger sizes than utility
icons. Be sure to establish
style rules (color, stroke,
shading) and use-cases as
these will be specific to your
brand.
Illustration
Illustrations, like spot icons,
are used to visually
communicate complex ideas.
Be sure to establish style
and concept guidelines (e.g.
what’s appropriate content
and tone?).
Motion
Motion is a powerful tool in
the interactive designer’s
toolkit. Not just for
aesthetic effect, but it can
be used to help guide a user’s
experience and provide
timely feedback.
Media Aspect Ratio Guide
Responsive Breakpoints
Responsive Grid
Spacing
Vision
Guidelines
Core Styles
Components
Components
Components
Atoms
Informed by:
• Site Architecture
• Content Strategy
Molecules
Informed by:
• Site Architecture
• Content Strategy
Templates
Informed by:
• Site Architecture
• Content Strategy
Priority Guides
outline content
and feature hierarchy.
Delivery —
Don’t overcomplicate it!
Sketch
Abstract
Let’s Build A Design
System in
● ● ● ●
Gathering
Definitions
Build Un-Opinionated
Utility Classes with
Tailwind.css
Tailwind.js
module.exports = {
textSizes: {
'xs': '.75rem', // 12px
'sm': '.875rem', // 14px
'base': '1rem', // 16px
}
},
modules: {
textSizes: [‘responsive']
}
Config
.text-xs {font-size: .75rem;}
@media (min-width: 576px) {
.sm:text-xs {
font-size: .75rem;
}
}
@media (min-width: 768px) {
.md:text-xs {
font-size: .75rem;
}
}
Output
Building Component Clases
.timing-1 {
transition-timing-function: ease;
}
.duration-1 {
transition-duration: .15s;
}
.property-all {
transition-property: all;
}
core/transitions--core.css
.btn {
@apply timing-1
duration-1 property-all
font-medium inline-block
cursor-pointer no-underline;
}
atoms/buttons.css
Establishing Core Component Classes
1. Responsive Type Scale
2. Responsive Spacing Kit
3. Responsive Aspect Ratio Kit
4. In-View and On-Load Transition Kit
Responsive Type
Scale
Responsive Type
Scale
Responsive Type Scale
textSizes: {
'deka': '1.875rem', // 30px
'hecto': '2.25rem', // 36px
'kilo': '2.875rem', // 46px
'mega': '3.375rem', // 54px
'giga': '4.75rem' // 76px
},
// 30/36
.header-hecto {
@apply .text-deka;
}
@screen md {
.header-hecto {
@apply .text-hecto;
}
}
Responsive Type Scale
textSizes: {
'deka': '1.875rem', // 30px
'hecto': '2.25rem', // 36px
'kilo': '2.875rem', // 46px
'mega': '3.375rem', // 54px
'giga': '4.75rem' // 76px
},
// 36/54
.header-mega {
@apply .text-hecto;
}
@screen md {
.header-mega {
@apply .text-mega;
}
}
Spacing Kit
.space-b-1 {
@apply .mb-8;
}
.space-b-2 {
@apply .mb-10;
}
@screen md {
.space-b-1 {
@apply .mb-10;
}
.space-b-2 {
@apply .mb-16;
}
}
Aspect Ratio Kit
.img--1x1 {
padding-bottom: 100%;
}
.img--4x3 {
padding-bottom: 75%;
}
.img--16x9 {
padding-bottom: 56.25%;
}
Transition Kit
.a-timing-1 {
animation-timing-function: ease;
}
.a-delay-1 {
animation-delay: .5s
}
.a-duration—1 {
animation-duration: 1.5s
}
.a-fade-in {
animation-name: fadeIn;
}
.a-fade-in-up {
animation-name: fadeInUp;
}
.a-fade-in-right {
animation-name: fadeInRight;
}
Transition Kit
.start-animations {
&.inView--a-fade-in {
animation-name: fadeIn;
}
&.inView--a-fade-in-up {
animation-name: fadeInUp;
}
&.inView--a-fade-in-right {
animation-name: fadeInRight;
}
}
Atoms, Molecules, &
Field Structure
[EXPORT VIDEO]
Of Craft Fields being
built
Shared Molecule:
Contact List
Shared Field
Structures
Contact List
Molecule
<div class="contact-list">
{% if card.image.count() %}
<div class="contact-list__img">
{% include '_atoms/figure' with {
content: block
} %}
</div>
{% endif %}
<div class="contact-list__content">
{% include '_molecules/contact-info' with {
content: block
} %}
</div>
</div>
Profile List
Molecule
<div class="profile-list {{render.spacing(content)}}">
{% for block in content.profile %}
<div class="profile-list__profile {{render.transitio
{% if card.image.count() %}
<div class="profile-list__img">
{% include '_atoms/figure' with {
content: block
} %}
</div>
{% endif %}
<div class=“profile-list__content">
{% include '_molecules/contact-info' with {
content: block
} %}
</div>
{% endfor %}
Contact Info
Molecule
<h4 class="contact-info__header">
{% if block.firstName %}{{block.firstName}}{% endif %}
{% if block.lastName %}{{block.lastName}}{% endif %}
</h4>
<div class="contact-info__meta">
{% if block.phone|length %}
<a href="tel:{{block.phone}}" class="contact-
info__phone">{{block.phone}}</a>
{% endif %}
{% if block.email|length %}
<a href="mailto:{{block.email}}" class="contact-
info__mail">{{block.email}}</a>
{% endif %}
</div>
Agnostic Field
Handles
Instance agnostic field handles let us
work with template partials like we’re
building with legos.
Always
be
consistent.
Practical Application
in Craft Templates
_entry.twig
{% case "actionHero" %}
{% include '_molecules/hero--action' with {
content: block
}
%}
{% case "featureHero" %}
{% include ‘_molecules/hero--feature’ with {
content: block
}
%}
{% case "highlightCards" %}
{% include ‘_molecules/cards--highlight' with {
content: block
}
%}
{% case “sectionHeader" %}
Core Components &
Macros
Colors Macro
{% macro colors(content) %}
{% spaceless %}
{% for value in content.colors.all() %}
{{ value.background }}
{{ value.text }}
{% endfor %}
{% endspaceless %}
{% endmacro %}
Spacing & Transition Kits Applied
{# Globals #}
{% import '_macros/global' as render %}
{# Article Template #}
<div class="basic-article {{render.spacing(content)}}">
<div class="article {{render.transitions(content)}}">
{{content.article}}
</div>
</div>
Transition Macro
{% macro transitions(content) %}
{% spaceless %}
{% for value in content.transition %}
{{value.timing}}
{{value.delay}}
{{value.duration}}
{{value.initialize}}
{% if value.initialize == 'inView' %}
inView--{% endif %}{{value.transition}}
{% endfor %}
{% endspaceless %}
{% endmacro %}
Button Macro
{% macro button(link, class, icon) %}
<a href="{{ link.url }}" class="{{ class }}"
{% if icon != 'no-icon' %}
<span class="icon --sm ml-1">
<svg><use xlink:href=“symbols.svg#{{icon}}”>
</use></svg>
</span>
{% endif %}
</a>
{% endmacro %}
Ratio & Radius Kits
<figure class="img {{render.ratio(content)}} {{render.radius(content)}}">
{{render.single_image(content.image.one())}}
</figure>
And so on…
{% macro spacing(content) %}
{% spaceless %}
{{ content.spacing }}
{% endspaceless %}
{% endmacro %}
{% macro radius(content) %}
{% spaceless %}
{{ content.radius }}
{% endspaceless %}
{% endmacro %}
{% macro align(content) %}
{% spaceless %}
{{ content. alignment }}
{% endspaceless %}
{% endmacro %}
{% macro pattern(content) %}
{% if content.pattern != 'no-pattern'
%}
bg-pattern {{ content.pattern }}
{% endif %}
{% endmacro %}
Transitions
Dribbble Credit: @ChrisGannon
Thank you! Danke!
Design Processes & Systems in Craft
Courtney Bradford
@courtney271
DotAll 2018 ! Berlin, Germany

Contenu connexe

Similaire à Design Processes and Systems in Craft

Design Systems: Enterprise UX Evolution
Design Systems: Enterprise UX EvolutionDesign Systems: Enterprise UX Evolution
Design Systems: Enterprise UX EvolutionAnne Grundhoefer
 
UX & UI Design behind SDL’s Customer Experience Cloud
UX & UI Design behind SDL’s Customer Experience CloudUX & UI Design behind SDL’s Customer Experience Cloud
UX & UI Design behind SDL’s Customer Experience CloudPhilipp Engel
 
Specialization for Web & Graphic Designer
Specialization for Web & Graphic DesignerSpecialization for Web & Graphic Designer
Specialization for Web & Graphic DesignerAttiullah Attiaie
 
The Guide To Wireframing
The Guide To WireframingThe Guide To Wireframing
The Guide To WireframingLewis Lin 🦊
 
World Usability Day 2014 - UX Toolbelt for Developers
World Usability Day 2014 - UX Toolbelt for DevelopersWorld Usability Day 2014 - UX Toolbelt for Developers
World Usability Day 2014 - UX Toolbelt for DevelopersSarah Dutkiewicz
 
Intelligent Design - Transitioning UX into UI
Intelligent Design - Transitioning UX into UI Intelligent Design - Transitioning UX into UI
Intelligent Design - Transitioning UX into UI Michelle Reyes
 
Design Systems: Designing out Waste, Designing in Consistency
Design Systems: Designing out Waste, Designing in ConsistencyDesign Systems: Designing out Waste, Designing in Consistency
Design Systems: Designing out Waste, Designing in ConsistencyEqual Experts
 
Usability Design: Because it's awesome
Usability Design: Because it's awesomeUsability Design: Because it's awesome
Usability Design: Because it's awesomeJen Yu
 
Responsive Process HOW Interactive
Responsive Process HOW InteractiveResponsive Process HOW Interactive
Responsive Process HOW InteractiveSteve Fisher
 
User Experience as a Strategic Advantage
User Experience as a Strategic AdvantageUser Experience as a Strategic Advantage
User Experience as a Strategic AdvantageMichael Dubakov
 
Introduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyIntroduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyZainul Zain
 
User Experience Design + Agile: The Good, The Bad, and the Ugly
User Experience Design + Agile: The Good, The Bad, and the UglyUser Experience Design + Agile: The Good, The Bad, and the Ugly
User Experience Design + Agile: The Good, The Bad, and the UglyJoshua Randall
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteJj Jurgens
 
Nailing Distributed Development With Effective Collaboration - Matt Ryall
Nailing Distributed Development With Effective Collaboration - Matt RyallNailing Distributed Development With Effective Collaboration - Matt Ryall
Nailing Distributed Development With Effective Collaboration - Matt RyallAtlassian
 
Dev fest ile ife 2014-ux, material design and trends
Dev fest ile ife 2014-ux, material design and trendsDev fest ile ife 2014-ux, material design and trends
Dev fest ile ife 2014-ux, material design and trendsTunde Ojediran
 
Incorporating UX into Your Projects
Incorporating UX into Your ProjectsIncorporating UX into Your Projects
Incorporating UX into Your ProjectsKarl Kaufmann
 
The road to faster mock-ups: How we built and shared our design system
The road to faster mock-ups: How we built and  shared our design systemThe road to faster mock-ups: How we built and  shared our design system
The road to faster mock-ups: How we built and shared our design systemandrewdenty
 
Successfully Implement Responsive Design Behavior with Adobe Experience Manager
Successfully Implement Responsive Design Behavior with Adobe Experience ManagerSuccessfully Implement Responsive Design Behavior with Adobe Experience Manager
Successfully Implement Responsive Design Behavior with Adobe Experience ManagerPerficient, Inc.
 
Sum of the Parts Speaker Series - Experience Engineering and UX
Sum of the Parts Speaker Series - Experience Engineering and UXSum of the Parts Speaker Series - Experience Engineering and UX
Sum of the Parts Speaker Series - Experience Engineering and UXvincebohner
 

Similaire à Design Processes and Systems in Craft (20)

Design Systems: Enterprise UX Evolution
Design Systems: Enterprise UX EvolutionDesign Systems: Enterprise UX Evolution
Design Systems: Enterprise UX Evolution
 
UX & UI Design behind SDL’s Customer Experience Cloud
UX & UI Design behind SDL’s Customer Experience CloudUX & UI Design behind SDL’s Customer Experience Cloud
UX & UI Design behind SDL’s Customer Experience Cloud
 
Specialization for Web & Graphic Designer
Specialization for Web & Graphic DesignerSpecialization for Web & Graphic Designer
Specialization for Web & Graphic Designer
 
The Guide To Wireframing
The Guide To WireframingThe Guide To Wireframing
The Guide To Wireframing
 
The guide to wireframing
The guide to wireframingThe guide to wireframing
The guide to wireframing
 
World Usability Day 2014 - UX Toolbelt for Developers
World Usability Day 2014 - UX Toolbelt for DevelopersWorld Usability Day 2014 - UX Toolbelt for Developers
World Usability Day 2014 - UX Toolbelt for Developers
 
Intelligent Design - Transitioning UX into UI
Intelligent Design - Transitioning UX into UI Intelligent Design - Transitioning UX into UI
Intelligent Design - Transitioning UX into UI
 
Design Systems: Designing out Waste, Designing in Consistency
Design Systems: Designing out Waste, Designing in ConsistencyDesign Systems: Designing out Waste, Designing in Consistency
Design Systems: Designing out Waste, Designing in Consistency
 
Usability Design: Because it's awesome
Usability Design: Because it's awesomeUsability Design: Because it's awesome
Usability Design: Because it's awesome
 
Responsive Process HOW Interactive
Responsive Process HOW InteractiveResponsive Process HOW Interactive
Responsive Process HOW Interactive
 
User Experience as a Strategic Advantage
User Experience as a Strategic AdvantageUser Experience as a Strategic Advantage
User Experience as a Strategic Advantage
 
Introduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyIntroduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga Academy
 
User Experience Design + Agile: The Good, The Bad, and the Ugly
User Experience Design + Agile: The Good, The Bad, and the UglyUser Experience Design + Agile: The Good, The Bad, and the Ugly
User Experience Design + Agile: The Good, The Bad, and the Ugly
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive Website
 
Nailing Distributed Development With Effective Collaboration - Matt Ryall
Nailing Distributed Development With Effective Collaboration - Matt RyallNailing Distributed Development With Effective Collaboration - Matt Ryall
Nailing Distributed Development With Effective Collaboration - Matt Ryall
 
Dev fest ile ife 2014-ux, material design and trends
Dev fest ile ife 2014-ux, material design and trendsDev fest ile ife 2014-ux, material design and trends
Dev fest ile ife 2014-ux, material design and trends
 
Incorporating UX into Your Projects
Incorporating UX into Your ProjectsIncorporating UX into Your Projects
Incorporating UX into Your Projects
 
The road to faster mock-ups: How we built and shared our design system
The road to faster mock-ups: How we built and  shared our design systemThe road to faster mock-ups: How we built and  shared our design system
The road to faster mock-ups: How we built and shared our design system
 
Successfully Implement Responsive Design Behavior with Adobe Experience Manager
Successfully Implement Responsive Design Behavior with Adobe Experience ManagerSuccessfully Implement Responsive Design Behavior with Adobe Experience Manager
Successfully Implement Responsive Design Behavior with Adobe Experience Manager
 
Sum of the Parts Speaker Series - Experience Engineering and UX
Sum of the Parts Speaker Series - Experience Engineering and UXSum of the Parts Speaker Series - Experience Engineering and UX
Sum of the Parts Speaker Series - Experience Engineering and UX
 

Dernier

Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja Nehwal
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfAmirYakdi
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxjeswinjees
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...amitlee9823
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...amitlee9823
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...SUHANI PANDEY
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Servicearoranaina404
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...sonalitrivedi431
 

Dernier (20)

Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdfThe_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
The_Canvas_of_Creative_Mastery_Newsletter_April_2024_Version.pdf
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptx
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 

Design Processes and Systems in Craft