Skip to content

adolfosp/Front-GPT3-React

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GPT3 Web Site

Introduction

This web site was made with react to build a web site to show the features of GTP3 AI

Technologies used

css3 git html5 typescript typescript

What I learned with this project?

  • Best practise to organize my project
  • To have a archive to import all of components and export it. An example of this
      import blog01 from '../../assets/blog01.png';
      import blog02 from '../../assets/blog02.png';
    
      export {
          blog01,
          blog02,
      };
    
      // or export directly
    
      export { default as Blog } from './blog/Blog';
      export { default as Features } from './features/Features';
  • Tricks to create a component easily with a VSCode extension named React Extension Pack
    • To create a component easily, run this command in the archive .jsx
      rafce + tab
      
      typescript

Presentation of the application

  • This is a image that show the full site

How to run?

  • Clone this repository
  • Run this command on the terminal to install all of dependencies
    npm i
    
  • Then, run this command
    npm run start

Releases

No releases published

Packages

No packages published