GithubHelp home page GithubHelp logo

keen-and-able-website's Introduction

Project : Keen-and-Able-Website

  • In this repository, we will document the project decription, how we build and what technologies we used. Let's begin with the components and deployment architecture of the project.

Node Js

Node.js is a cross-platform, open-source JavaScript runtime environment that can run on Windows, Linux, Unix, macOS, and more. Node.js runs on the V8 JavaScript engine, and executes JavaScript code outside a web browser.

sudo apt update
sudo apt install nodejs
node -v

NPM

npm is a package manager for the JavaScript programming language maintained by npm, Inc. npm is the default package manager for the JavaScript runtime environment Node.js and is included as a recommended feature in the Node.js installer.

sudo apt install npm

React Js

React is a free and open-source front-end JavaScript library for building user interfaces or UI components. It is maintained by Meta and a community of individual developers and companies. React can be used as a base in the development of single-page or mobile applications.

Install Create-React-App

npx create-react-app KeenAble
cd KeenAble
npm start

Dependencies

1. Tailwindcss

Tailwind CSS differs from other CSS frameworks like Bootstrap in that it doesn't provide predefined classes for elements like buttons or tables. Instead, it provides a set of opinionated, single-purpose utility classes that can be used directly inside markup to design an element.

npm install -D tailwindcss
npm tailwindcss init

Add the paths to all of your template files in your tailwind.config.js file.

Add the paths to all of your template files in your tailwind.config.js file.

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

Add the Tailwind directives to your index.CSS

Add the @tailwind directives for each of Tailwind’s layers to your ./src/index.css file.

@tailwind base;
@tailwind components;
@tailwind utilities;

2. Axios

Axios, which is a popular library is mainly used to send asynchronous HTTP requests to REST endpoints. This library is very useful to perform CRUD operations.

  1. This popular library is used to communicate with the backend. Axios supports the Promise API, native to JS ES6.
  2. Using Axios we make API requests in our application. Once the request is made we get the data in Return, and then we use this data in our project.
  3. This library is very popular among developers. You can check on GitHub and you will find 78k stars on it.
npm install axios

Pages We make in Keen and Able Website

Components

Navbar

In the navbar, we place the KeenAble logo along with links to the About, Services, Careers, and Contact Us pages.

image

Clients

In the Clients section, we feature all clients who have utilized services from Keen and Able.

image

Footer

In the footer, we include the full address of KeenAble, along with links to the About, Services, and Contact pages. Our services encompass Web Development, Mobile App Development, Domain and Hosting, and General IT Consultation. Additionally, we provide links to our social media profiles.

image

Hero

Pages

Contact Page

image

Home Page

image

Intro Page

image

image

Career Page

image

image

image

Services Page

image

App.Js

keen-and-able-website's People

Contributors

ankitv1001 avatar akshaykumar05 avatar

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.