Skip to content

Commit

Permalink
Merge pull request #1 from mamadfar/main
Browse files Browse the repository at this point in the history
change the images directory to img
  • Loading branch information
mamadfar authored Jan 16, 2023
2 parents 50d39d9 + 00a473e commit 4d3f5da
Show file tree
Hide file tree
Showing 25 changed files with 26 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ yarn-debug.log*
yarn-error.log*

# IDE
.idea
.vscode
/idea
/vscode

# eslint
.eslintcache
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"homepage": "https://mamadfar.github.io/gp3-ui",
"name": "gp3_first_ui",
"homepage": "https://mamadfar.github.io/gp3-ui/",
"name": "gp3-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import './App.scss';
import {Footer, Blog, Possibility, Features, WhatGPT3, Header} from "./containers";
import {Brand, CTA, Navbar} from "./components";
import './App.scss';

function App() {
return (
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
10 changes: 5 additions & 5 deletions src/components/brand/imports.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import google from "../../assets/images/google.png";
import slack from "../../assets/images/slack.png";
import atlassian from "../../assets/images/atlassian.png";
import dropbox from "../../assets/images/dropbox.png";
import shopify from "../../assets/images/shopify.png";
import google from "../../assets/img/google.png";
import slack from "../../assets/img/slack.png";
import atlassian from "../../assets/img/atlassian.png";
import dropbox from "../../assets/img/dropbox.png";
import shopify from "../../assets/img/shopify.png";

export {
google,
Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {RiMenu3Line, RiCloseLine} from "react-icons/ri";
import "./navbar.scss";
import Logo from "../../assets/images/logo.svg";
import Logo from "../../assets/img/logo.svg";
import {useState} from "react";

const Menu = () => (
Expand Down
10 changes: 5 additions & 5 deletions src/containers/blog/imports.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import blog01 from "../../assets/images/blog01.png";
import blog02 from "../../assets/images/blog02.png";
import blog03 from "../../assets/images/blog03.png";
import blog04 from "../../assets/images/blog04.png";
import blog05 from "../../assets/images/blog05.png";
import blog01 from "../../assets/img/blog01.png";
import blog02 from "../../assets/img/blog02.png";
import blog03 from "../../assets/img/blog03.png";
import blog04 from "../../assets/img/blog04.png";
import blog05 from "../../assets/img/blog05.png";

export {
blog01,
Expand Down
2 changes: 1 addition & 1 deletion src/containers/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import "./footer.scss";
import GPT3Logo from "../../assets/images/logo.svg"
import GPT3Logo from "../../assets/img/logo.svg"

const Footer = () => {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/containers/header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "./header.scss";
import People from "../../assets/images/people.png";
import AI from "../../assets/images/ai.png";
import People from "../../assets/img/people.png";
import AI from "../../assets/img/ai.png";

const Header = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/containers/possibilty/Possibility.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import "./possibility.scss";
import PossibilityImage from "../../assets/images/possibility.png"
import PossibilityImage from "../../assets/img/possibility.png"

const Possibility = () => {
return (
Expand Down

0 comments on commit 4d3f5da

Please sign in to comment.