Units Research Review interdisciplinary trip around tech emotions

Original Source: http://feedproxy.google.com/~r/abduzeedo/~3/_tGahGhQNy8/units-research-review-interdisciplinary-trip-around-tech-emotions

Units Research Review interdisciplinary trip around tech emotions
Units Research Review interdisciplinary trip around tech emotions

abduzeedo09.22.20

What if we took another look at technology? Rather than trying to understand how it works, Units Research Review sets out to discover what it feels like to be around it, from fascination to abandonment or devotion. 

Units is a Paris-based design studio, specialized around technological issues. From neurosurgical micro-robots to festive machines to connected objects, the studio’s practice is anchored in the analysis and formalization of new technologies.

In September 2020, Units publishes the first issue of its research journal, Units Research Review (URR), to support its approach.  By giving the voice to anthropologists, designers, artists and historians, URR investigates the “Technical Happiness” theme in order to study the range of emotions that technology conveys. The aim of this first issue is to provide a plural perspective on technical emotions within our cultural sphere.  Between research notebook, game book and collection of plastic productions, U.R.R takes you, through 11 contributions, on the technical side.

As a conclusion of the review, Units proposes a manifesto for generating technical experiences through emotions. The magazine is available for sale at a price of 10€ and it comes with a free shipping.

Get your copy here : https://units.design/product/technical-happiness/

While reading U.R.R, you will find games such as labyrinths, crosswords, dot to connect or a personality test. ©Rimasùu

Catharine Rossi, design historian, tells us about the history of nightclubs, using technical devices to participate in our letting go since the late 1960s. © Rimasùu

Packaging of Units Research Review © Rimasùu

Côme Lart, designer, gives us his vision of technology through computer-generated images along with a text that reveals a possible technical aesthetic.⁠ © Côme Lart & Rimasùu

Exclusive interview with Nicolas Nova, anthropologist who looks back at the emergence of a form of “breakdown of technological fantasy”.⁠ © Rimasùu

Article from Emmanuel Grimaud, a french anthropologist observing an engineer in India who designed a scanner, able to detect the auras of objects around us. © Rimasùu

Article from Benedict Redgrove a photographer who takes us behind the scenes of the world’s space agencies such as Nasa. © Rimasùu


Learn date-fns: A Lightweight JavaScript Date Library

Original Source: https://www.sitepoint.com/date-fns-javascript-date-library/?utm_source=rss

Introduction to date-fns

Working with dates in JavaScript is a pain. Native date methods are often verbose and occasionally inconsistent — something which also makes them error-prone. But good news is at hand. There are several libraries that exist to take the pain out of date manipulation. These libraries are to JavaScript dates, what jQuery is to the native DOM API.

Let me give you an example. This is the accepted answer to a Stack Overflow question asking how to get last day of the month:

var t = new Date();
alert( new Date(t.getFullYear(), t.getMonth() + 1, 0, 23, 59, 59) );

Of course that works, but it’s not immediately obvious what the numbers after getMonth represent. Now contrast that with the considerably more readable:

const today = new Date();
console.log( lastDayOfMonth(today) );

That lastDayOfMonth method is one provided by date-fns, a self-proclaimed comprehensive toolset for manipulating JavaScript dates in the browser and Node.js.

In this article I’m going to show you how to get up and running with date-fns. After reading you’ll be able to drop it into your projects and take advantage of its many helper methods to manipulate dates with ease. This will make code like t.getMonth() + 1, 0, 23, 59, 59 a thing of the past.

So, Why Not Just Use Moment.js?

The elephant in the room is Moment.js. This library has undoubtedly become the de-facto standard for working with dates in JavaScript. So why not use that? Why do we need another JavaScript date library?

Well, according to Sasha Koss, the creator of date-fns, Moment.js has a few inherent problems which motivated him to create date-fns. Sasha expands on what these problems are on the project’s GitHub page, but in a nutshell:

Moment.js is mutable which can cause bugs.
It has a complex OOP API (which doubles the mutability problem).
It has a performance overhead due to the complex API.
Its build size is large when used with Webpack, as locale files are included as part of the bundle.

Let’s contrast that with date-fns (taken from the project’s homepage):

Date-fns is immutable, always returning a new date instead of changing the one you pass in.
It has a simple API. You always have one function that does one thing.
It is fast. You can be sure that your users will have the best user experience.
It is the perfect companion for Webpack. With the function-per-file style you can pick just what you need and stop bloating your project with useless functionality.

For me, the feature that makes it shine is its ease of use. When using it on a web-based project, you can just grab date-fns from a CDN, drop it into your page and profit. More about that next…

Installation

There are a variety of ways to install the library.

It’s available as an npm package:

npm install date-fns –save

Or via Yarn:

yarn add date-fns

Or Bower:

bower install date-fns

Or from a CDN:

<script type=”text/javascript” src=”https://cdnjs.cloudflare.com/ajax/libs/date-fns/1.28.5/date_fns.min.js”/>

If you chose this method, please note that the library is namespaced under a dateFns object, in the same way that jQuery is namespaced under $.

<script>
console.log(
dateFns.isToday(new Date())
);
</script>

Date-fns Basic Usage

Assuming you’re using a module loader you can require only those parts you need. The following example shows you how to format a date.

const format = require(‘date-fns/format’);
console.log(
format(new Date(2017, 6, 6), ‘MM/DD/YYYY’)
);

// ’06/07/2017′

Want to change the locale? No problem:

Continue reading
Learn date-fns: A Lightweight JavaScript Date Library
on SitePoint.

Exciting New Tools for Designers, September 2020

Original Source: https://www.webdesignerdepot.com/2020/09/exciting-new-tools-for-designers-september-2020/

It’s fun to see new website design tools that reflect current times and the state of the world. That’s very true this month with new databases devoted to diversity and women in technology, as well and resources to make your design life easier.

Here’s what’s new for designers and developers this month:

Ztext.js

Ztext.js is an easy to implement, three-dimensional typography tool for the web that works with any font you want to use. With the popularity of 3D effects and animation, this tool has a lot of practical applications. Everything you need, including documentation, is available from developer Bennett Feely on his website and GitHub. (It’s free but you can show appreciation with a donation if you like it.)

Gradient Magic

Gradient Magic is a free gallery of fun and interesting CSS gradients. You can sort through a random selection or by category of color to find just the right gradient for your project. Some of them would make really neat backgrounds or image overlays.

Impossible Checkbox

Impossible Checkbox is a fun little divot that you’ll want to play with and emulate. Click or tap the slider to activate and a nifty little friend pops up. Now here’s the fun part: You can’t leave it checked, and take note of the changing expression of the checkbox character.

Diversify Tech

Diversify Tech isn’t your average job board; it is a collection of resources – and opportunities – for underrepresented people in technology. It includes a weekly roundup and everything from scholarships, to events, to jobs, to speaking opportunities.

Women in Tech

Women in Tech is a list of apps made by women. The apps are ranked and chosen based on upvotes and is a good resource if you want to help support women-owned projects. Search or submit an app for inclusion.

Devello Studio

Devello Studio is a tool that allows you to write code in the cloud. You don’t have to install anything and no matter where you are, just can open a project in-browser, and continue development where you had left off last time. Plus, it works with GitHub support built right in.

Hustl

Hustl is a premium Mac app that allows you to create time-lapse videos of your screen. Use it to show off work or projects or create a cool video for your portfolio. Plus you can use it to capture just one active app so you don’t have to do a lot of editing later.

FeedBaxley

FeedBaxley is a user feedback tool that helps you (and users) figure out what’s frustrating before it becomes a real issue. You can customize everything to match your brand and set it up with copy and paste tools. Feedback integrates with Slack, making it easy for you to analyze information with a team.

BestTime

BestTime launched a major update with a new tool that makes it possible to analyze visitor peaks of public business (cafe, gym, etc) for whole areas. Using the heatmap API you can find businesses at popular times, locations, or by business type.

Pixeltrue

Pixeltrue is a new collection of free SVG illustrations and Lottie animations in a trendy style. They are available for commercial and personal use and add a bit of whimsical delight to website projects. (The error illustrations are particularly fun.)

Previewed

Previewed has tons of cool and realistic mockups that you can use to create the perfect setting for digital projects. You can find mockups for a variety of devices and cool panoramas that work perfectly for elements such as app store previews.

Alt Text Overlay Bookmarklet

The Alt Text Overlay Bookmarklet solves a common problem: It shows what images use alt text and what that text is. The tool was created by Christian Heilmann and he’s put it on GitHub for you to play with and test.

MergeURL

MergeURL allows you to merge and shorten up to five links. Enter the links and mergeurl.com/o/xxxxx, for example, will open all the URLs associated with that link. The tool is free to use and you don’t have to register to use the service.

Infinity Search

Infinity Search is a new search engine that lets you look for things privately and efficiently. Search the web, images, or videos. Here’s a little about how it works: “While we retrieve results from other search engines like Bing and Wikipedia, we also have our own indexes of links that are displayed in our search results. We are actively working on improving these indexes and they will only get better.”

Blade UI Kit

Blade UI Kit is a set of renderless components to use in Laravel Blade Views. It’s built for the tall stack and is completely open source. It includes 26 components and you can contribute as well.

Trusted News

Trusted News is a Google Chrome extension that uses AI to assist in evaluating the quality of the online content. In its first release, it scores the objectivity for a selected article, testing whether it is written from a neutral perspective as opposed to a subjective one.

BaseDash

BaseDash allows you to edit production data without coding. You can make changes to the database with the ease of a spreadsheet. This tool makes it easy to find and edit information in a hurry. It works with all major databases including MySQL, PostgreSQL, Amazon Redshirt, Microsoft SQL Server, and more.

Email2Go

Email2Go is a service that helps you create email templates and test them on dozens of physical devices and applications. It’s free right now while it is in early release.

Iconscout Converter

The Iconscout Converter allows you to convert icons and images from one file format to another for free. Convert SVG, PNG, JPG, and PDF with a single click.

Shape 2

Shape 2 is a massive collection of 5,000+ unique icons and illustrations with a full-blown web editor. Customize colors, stroke width, size and full variations that can export to SVG, PDF, PNG, GIF, and React. This is a premium tool and includes a discounted release price for now.

Aestetico

Aestetico is a beautiful sans serif that includes a massive family with 54 styles. This premium typeface is highly readable and has modern lines and curves that make it a great option for a variety of uses.

Arcades

Arcades is a modern display font with a retro, 1980s-style vibe. It includes regular and italic styles.

Brimington

Brimington is a handwriting style typeface with rough strokes and smooth curves. It includes a set of 227 characters and 219 glyphs in a readable design.

California Signature

California Signature is a typeface duo with a slab serif and handwriting style that are perfectly paired. The thick and thin options provide a yin and yang effect.

Eastblue

Eastblue is a script typeface with long swashes and interesting curves. It includes a solid character set and is free for personal use only.

Source

p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}

Hometime Minimalist Branding Redesign

Original Source: http://feedproxy.google.com/~r/abduzeedo/~3/aHbj9IqybfU/hometime-minimalist-branding-redesign

Hometime Minimalist Branding Redesign
Hometime Minimalist Branding Redesign

abduzeedo09.21.20

Bruno Canales shared a  new project, this time it’s the branding redesign for Hometime, a residential management company in Dallas, Texas. Their main objective is to be a one stop shop for home maintenance, reparation and remodels. The visual solution emerges from paying attention to the tradition found in residential homes, but imbuing with a contemporary and vibrant twist.

The marks, typography and applications are inspired in an architectural element that is central to American residences: the vinyl siding. Chromatically, the branding draws inspiration from construction sites and handyman’s tools. The tension between the new and the old is also represented in the typefaces; a combination between a modernist sans serif and an older transitional serif.

LInks

Instagram
Behance


ASICS Feel Fast & Dynaflyte FF – Illustration and Motion Design

Original Source: http://feedproxy.google.com/~r/abduzeedo/~3/qHBCcbkQYcA/asics-feel-fast-dynaflyte-ff-illustration-and-motion-design

ASICS Feel Fast & Dynaflyte FF – Illustration and Motion Design
ASICS Feel Fast & Dynaflyte FF - Illustration and Motion Design

abduzeedo09.17.20

Adhemas Batista directed a series of animations for Asics Worldwide partnering with Zombie Studio and commissioned by 180LA, advertising agency based in Los Angeles. The series of animations is a fun representation of the feeling of running with the Flytefoam technology by Asics. Live action direction by David Black.

Stills

For more information make sure to check out:

Adhemas.com
Instagram


MasterCard – Believe in Experiences

Original Source: http://feedproxy.google.com/~r/abduzeedo/~3/7c2hlb3Ag70/mastercard-believe-experiences

MasterCard – Believe in Experiences
MasterCard - Believe in Experiences

abduzeedo09.17.20

Wernersam Studio and Latina Studio shared their beautiful work brand work for MasterCard. The campaign is focused on the message that at MasterCard, they believe in experiences, in the awe of the simple things. They use moments, in different situations like gastronomy, tourism, soccer competitions to illustrate that with super smart photos recreating the MasterCard logo. 

Credits

McCann Colombia
Creative Director: Andres Salamanca Soler
Art Director: Felipe Álvarez C. – Andrés V. De la Hoz
Copywriter: Laura Garzón – Julian Triana
Photographers: Wernersam Studio
Post-production: Latina Studio – Andrés V. De la Hoz


Leaps in Space 2020 Calendar

Original Source: http://feedproxy.google.com/~r/abduzeedo/~3/MDdtjBgWJIE/leaps-space-2020-calendar

Leaps in Space 2020 Calendar
Leaps in Space 2020 Calendar

AoiroStudio09.16.20

What can we say about 2020 so far, let’s just put this way. It was quite an eventful year and we are still not done. An outcome though is we saw a strive from many initiatives to raise the bar even during what we can call it ‘weird times’. As I was surfing for ‘studio inspiration’, I stumbled the work from the fine folks at Bureau Oberhaeuser, a studio based in Hamburg, Germany. Other than looking like cool people to work with, they have shared a calendar that you can purchase and download as a wallpaper. Titled: ‘Leaps in Space’, a yearly calendar on the stars and it’s beautiful. Take a look!

Links

Site
Behance
Instagram


5 Tips for Designing One-Page Websites That Work

Original Source: https://www.webdesignerdepot.com/2020/09/5-tips-for-designing-one-page-websites-that-work/

Smart design choices can help reduce the fatigue and frustration people would otherwise feel when using the web.

There are a lot of ways web designers can minimize distractions, information overload, and analysis paralysis. For instance, designing with abundant white space, shorter snippets of text, and calming color palettes all work.

One-page websites might be another design choice worth exploring.

When done right, a single-page website could be very useful in creating a simpler and more welcoming environment for today’s overwhelmed consumers.

With its diminutive structure, it would leave a unique and memorable impression on visitors. What’s more, a well-crafted one-page website would provide visitors with a clean, narrow, and logical pathway to conversion.

For those of you who use BeTheme’s pre-built sites (or are thinking about adopting them for your next site), there’s good news. In addition to the great selection of traditionally structured sites available, Be also has single-page websites for you to work with.

So, the technical aspects you’d need to master to get the one-page formula right are already taken care of.

Let’s have a look at some of the features that make single-page websites shine and how you can design them:

1. Give Visitors a Succinct Journey Through the Website and Brand’s Story

The typical business websites you design include pages like Home, About, and Contact, as well as pages that explain the company’s services or sell their products. Unless you’re building really long sales landing pages, there’s usually about 400 to 600 words on each page.

That’s still a lot of content for your visitors to get through and it can make perusing a single website an overwhelming experience. Imagine how they feel about reading through all that content when they have to do it multiple times when comparing other websites and options.

In some cases, this multi-page website structure is overkill. The information you’d otherwise fill a full page with can easily be edited down to fit a single pane or block on a one-page website and still be as useful.

Like how design and development studio Pixel Lab does it:

Pixel Lab

Notice how all the key points are hit in a concise and visually attractive manner:

The Featured Work portfolio
The About Us introduction
The FAQs
The contact form

The BeCV pre-built site is built in a similar manner (and for a similar purpose, too):

BeCV

Just remember to keep a sticky navigation bar present at all times so visitors know exactly how much content there is on the page.

2. Opt For a Non-Traditional Navigation for a Uniquely Memorable Experience

Typically, the rule is that website navigation should follow one of two patterns:

Logo on the left, navigation links on the right.
Logo on the left, hamburger menu storing the navigation on the right (for mobile or desktop).

There are a number of reasons why this layout is beneficial. Ultimately, it comes down to the predictability and comfort of having a navigation be right where visitors expect it, no matter where they end up on your website.

However, with a single-page website, this is one of those rules you can bend, so long as you have a way to keep the navigation ever-present and easy to use.

There are some great examples of one-page sites that have done this, usually opting for a stylized left-aligned sidebar that contains links to the various parts of the page. Purple Orange is just one of them:

Purple Orange

And you can use a Be pre-built site like BeHairdresser to create a similar navigation for your website:

BeHairdresser

If you’re trying to make a bold brand stand out, this is a neat layout option to experiment with.

3. Tell a More Visually Striking Story

One of the problems with building a website with WordPress is that you always have to worry about how your design decisions affect speed. Even once the code is optimized, images are usually the low-hanging fruit that have to be dealt with.

But when your website only contains one page, this means images aren’t as much of a problem (so long as you compress and resize them). It’s only when you continue to add pages, products, and galleries that you have to scale back your visual content.

So, if your brand has a strong visual identity and you want the website to show that off through images, a one-page website is a great place to do it.

Just remember to keep a good balance between text and images as Vodka A does:

Vodka A

There’s no reason for a liquor distribution company to mince words when the elegant product photos effectively communicate to consumers what it’s all about.

In fact, this image-heavy, single-page style would work well for any vendor selling a small inventory of products: food, beverages, subscription boxes, health and beauty products, etc. And you can use the pre-built BeBistro to carefully craft it:

BeBistro

4. Turn a Complex Business Idea or Offering into Something Simple to Understand

When a company sells a technical or complex solution to consumers, it can be a real struggle to explain what it does and why they should buy it.

But here’s the thing: Consumers don’t really care about all that technical stuff. Even if you were to explain how an app worked or how you use a software like Sketch or WordPress to design a website, their eyes would glaze over.

What matters most to them is that you have an effective and affordable solution that they can trust. So, why bog them down with page after page of technical specs and sales jargon?

A one-page website enables you to simplify even the most complex of solutions.

Take Critical TechWorks, for instance. It offers an advanced technological solution for the automobile industry…and, yet, this is all it needs to explain the technology at work:

Critical Techworks

If your website’s visitors are more concerned with the outcomes rather than the “how”, you’d do well to make the website and content as easy to digest as possible. And you can use a pre-built site like BeCourse to do that:

BeCourse

Notice how both of these sites take visitors through a small handful of sections (pages) before delivering them to the main attraction: the contact or sign-up form.

5. Capture Leads and Sales at Different Stages of the Sales Funnel

Some of your visitors will be brand new to the site and need more information before they pull the trigger. Others will already have a good idea of what they’re getting into and just need one small push to get them to take action.

With a single-page website, you can design each section to cater to the different kinds of leads and prospects that arrive there.

The top sections should be introductory in nature, providing new visitors with information they need to decide if this is an option worth pursuing. The sections further below should drill down into the remaining questions or concerns that interested prospects have.

Regardless of which section they’re looking at, your one-page site will have CTA buttons built in along the way that drive them to conversion the second they’re ready.

This will enable your site to always be prepared to convert leads, whether visitors read the first two sections or make their way through all of them until they reach the conversion point (e.g. a contact form, a checkout page, etc.).

You’ll find a nice example of this on the Cycle website, with CTAs strategically placed along the single-page’s design:

Cycle

BePersonalTrainer is a good pre-built site option if you want to ensure that you include a CTA button at the perfect stopping points throughout your page:

BePersonalTrainer

You won’t find them at the bottom of every section, but that’s okay. You just need them whenever your visitors are seriously thinking about taking action.

What Should You Build: A Multi-Page or One-Page Website?

Although a single-page website won’t work for larger websites (especially in ecommerce), it could work well for business websites that are on the smaller side to begin with.

By centralizing all of that information into a single page, you’ll create a fresh experience that wows visitors with how succinct yet powerful both the message and offering are.

Just be careful. Many single-page websites are poorly done (which is probably why they fell out of fashion for a while).

Remember: This is not your chance to throw web design rules out the window. In fact, this will be an opportunity to clear out the fluff and the clutter that’s accumulated over the years and to return to a more scaled-back and classic approach to design.

And with the help of Be’s pre-built one-page websites, it won’t require much work on your part to make that happen.

 

[– This is a sponsored post on behalf of BeTheme –]

Source

p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}

20 Plugins to Manage Multiple Authors WordPress Sites

Original Source: https://www.hongkiat.com/blog/35-tips-tricks-to-manage-and-handle-multi-author-blogs/

WordPress is an easy CMS to run your blog. So much easy to use that it now powers more than 30% of the web. You can write, edit, and publish your post in a very convenient interface. However, when it…

Visit hongkiat.com for full content.

Design.dev: A New Place to Find Free High-Quality Design Resources

Original Source: http://feedproxy.google.com/~r/tympanus/~3/01eg6tBjCxo/

This is a sponsored article written by our friends at Design.dev, a new website for design resources.

Whether you are a graphic designer, web designer or developer, working in the UI or UX field, or pretty much anything related to digital and print production, you likely have utilized premade digital assets in your projects. There are a variety of websites that offer these resources, but today we’d like to introduce you to the “new kid on the block”: Design.dev.

Design.dev was launched only a few months ago with the goal of providing high-quality free and premium digital resources for creative people, to help speed up your workflow and save you time and money in the process. Unlike other similar websites, the resources here are currently exclusive to Design.dev, so you won’t find them anywhere else. While this could change in the future as the site grows, for now this makes the website a great place to find unique creations to use in your projects.

Let’s take a closer look at what Design.dev has to offer, how it works, and why we think this resource is worth visiting.

First Impression: Easy To Search, Filter, and Find

Upon first arriving on the home page, you will see a grid of 12 product offerings below a category filter. Click on any of the categories (or multiple categories) to filter down to what you are searching for. Current categories include Icons, Illustrations, Premium, Print, Social, UI Kits, and Website Templates. There is a secondary filter that narrows your results down even more to the type of file included in the download. These filters include Illustrator, Affinity Designer, Photoshop, Sketch, and Figma. So whatever design software you are most comfortable with, you can filter to make sure you’re getting the editable file type you are looking for. 

You can also search for specific keywords using the search feature near the top of the page. 

Products are clearly labeled with a green “Free” banner or a blue “Premium” banner, so you know right away what the availability of each product is based on your membership in one of the two tiers. Each product listing also includes icons denoting the design software file type(s) it is available in, along with the category to which it belongs.

All of this will save you time when you are looking for something specific.

Helpful Asset Details

Click on a product to learn more about it and you will find a brief description, followed by a carousel of sample images. Click on any of the images in the carousel to view it full size, which is helpful to see the detail within each offering.

There is also a sidebar on each single product page that tells you the category, file format(s), number of elements in the file and the file download size. Good to know what you’re getting into before you download the file.

Single, Simple License: Use In Personal and Commercial Projects Without Attribution

You don’t have to worry about any complex legal jargon or uncertainty of what you can or can’t do with the items you download. Every product on Design.dev falls under the same license and can be used in both personal and commercial projects without attribution. You can modify them however you want as well. The only limitation is you that cannot resell them.

Some Example Digital Resources We Liked

10 Abstract Background Illustrations (Free)

Who doesn’t use backgrounds in their projects? These ten unique background illustrations can be used in a variety of projects and they are truly one of a kind.

Restaurant Website Template (Premium)

This well-designed and complete website template kit includes 5 pages in both desktop and mobile versions, so you can use it for your next restaurant website and simply update the branding, colors and content to match you or your client’s needs.

36 Symbols of Summer (Free)

These playful illustrations can be used as icons or however else you’d like to add fun and individuality to your summer-themed project.

Furr – Mobile Ecommerce UI Kit (Free)

This clean, well-designed and thought out mobile ecommerce kit includes 12 app screens that take the user from signup through shopping to purchase. You could use this kit in a multitude of contexts by simply changing out the products and editing the branding for a quick mockup to present to your client.

Free Membership: Simple to Sign Up and Start Downloading Assets

Price is always a major consideration when choosing where to get your digital assets to use in your projects. That’s one of the primary reasons Design.dev stands out in its field. With a significant percentage of their offerings available for free, and new free products being added regularly, the website should become a regular part of your resource-searching routine. Best of all, the requirements for membership are simple: just your name, email address, username, and password is all that’s needed to start downloading every single free product on the website!

Premium Membership For Only $10 per Month

If you would like to up your game and increase the span of products you can download, you can sign up for a Premium membership for only $10 per month. That’s a great price, and it is for a limited time for “early adopters”. This means that at some point in time that price is going to increase, but you can lock in the $10 monthly subscription now and even when the price goes up for new members, yours will not change. It’s a great way to lock in the low price now so that in the future you will still have access to all of the Premium products they will be adding without having to pay anything additional.

Final Thoughts

It is obvious that this new website has the potential to become a go-to resource for designers and developers alike. While the current product offering is relatively smaller than other, more established websites, Design.dev looks to be committed to continually growing, improving, and adding many more products on a regular basis. That, paired with the unique and exclusive design resources currently listed, make this website one to bookmark and watch. We encourage you to give it a visit and see what you can find that will help you save time and money in your future projects, as well as possibly spark some inspiration and imagination for your own designs.

The post Design.dev: A New Place to Find Free High-Quality Design Resources appeared first on Codrops.