Giter Club home page Giter Club logo

alex-devero-website's Introduction

alex-devero-website's People

Contributors

alexdevero avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

 avatar  avatar

alex-devero-website's Issues

Change title on about page

Instead of "I'm a designer who loves code." use ""I'm a designer, developer & entrepreneur. Add info about technology, code, design and business being my passions and obsessions since an early age.

Add faq page

Move the faq text from about page to FAQ page.

Split gulpfile into modules

Split gulp file into smaller modules located in "gulp" directory. Use gulpfile only to create the top tier tasks.

Fix failing test

  • - Fix html warnings
  • - Fix Sass warnings & errors (docs)
  • - Fix JS warnings & errors
  • - Fix comma-dangle error in console (.eslintrc) (docs)

Buttons on homepage

First, switch buttons - work should be on the right. Second, Replace "Contact" with "About".

Add inline exclusions for linters

Some code is flagged with warning by linters (sass-lint and eslint).

Example of sass-lint rule exception:

// sass-lint:disable no-vendor-prefixes
html {
  font-size: 16px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
// sass-lint:enable no-vendor-prefixes

Example of eslint rule exception:

/* eslint-enable no-unused-vars */
const lazyload = new LazyLoad();
/* eslint-enable no-unused-vars */

Simplify form

Reduce the "Subject" options to "I need a designer", "I need developer", "I need designer & developer", "I need consultation" and "Other".

Implement visible navigation for tablets and mobiles

On desktop, use something like following snippet. On tablet and mobile (<768 px), use current, hidden, full-width navigation.

.nav--main {
  /* position: fixed; */
  /* top: 0; */
  /* right: 0; */
  /* z-index: 4; */
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  overflow-y: auto;
  width: 100%;
  max-width: calc(100% - 108px);
  height: 100%;
  text-align: center;
  /* background: #212121; */
  transition: transform .25s cubic-bezier(.4,0,1,1);
  /* transform: translateX(100%); */
}

@media screen and (min-width: 556px) {
.nav--main {
  /* max-width: 20rem; */
  /* box-shadow: -6px 0 6px hsla(0,0%,8%,.35); */
  -ms-transform: translateX(328px);
  /* transform: translateX(328px); */
}
}

@media screen and (max-width: 767px) {
.nav--main li:nth-child(n+2) {
  margin-top: .35rem;
}
}

@media screen and (min-width: 768px) {
.nav--main li:nth-child(n+2) {
  margin-left: 21px;
}
}

.nav--main a {
  font-size: 1rem;
  /* color: #fff; */
}

Inspiration: http://www.mizko.net/

Add polyfill for forEach

// Polyfill for forEach in Edge & IE
if (document.documentMode || /Edge/.test(navigator.userAgent)) {
if (typeof NodeList.prototype.forEach === 'function') return false;

    NodeList.prototype.forEach = Array.prototype.forEach;
  }

Rename anchors, controllers and switches in JS

Rename settings, controllers and switches in main.js. Rename "anchors" to "appAnchors", "controllers" to "appControllers" and "switches" to "appSwitches". This will help avoid possible collisions with 3rd party scripts and also fix eslint "sort-keys" warning.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.