Compare commits
No commits in common. "ac970950ac8bda81578c6f46d458a3a821616912" and "457f244135ece43e858dc416b5f2a82fdb0fbe0c" have entirely different histories.
ac970950ac
...
457f244135
1
.gitignore
vendored
@ -22,4 +22,3 @@
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.history/
|
@ -1,8 +1,6 @@
|
||||
import React from 'react';
|
||||
import './App.css';
|
||||
import { Nav } from './components/header';
|
||||
import { Footer } from './components/footer';
|
||||
import { PayPal, Purchase, ShowCase } from './components/mainPage';
|
||||
import Nav from './components/Nav';
|
||||
import Footer from './components/Footer';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
@ -11,9 +9,6 @@ function App() {
|
||||
<Nav />
|
||||
|
||||
{/* Not sure what to put for body content yet */}
|
||||
<ShowCase />
|
||||
<Purchase />
|
||||
<PayPal />
|
||||
|
||||
</div>
|
||||
<Footer />
|
||||
|
Before Width: | Height: | Size: 941 KiB |
Before Width: | Height: | Size: 530 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 340 KiB |
Before Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 6.5 MiB |
Before Width: | Height: | Size: 2.0 MiB |
Before Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 353 KiB |
Before Width: | Height: | Size: 366 KiB |
@ -1,3 +0,0 @@
|
||||
import plc from "./images/B1-14MR2-D24.jpg";
|
||||
import w2c from "./images/W2C.jpg";
|
||||
export { plc, w2c };
|
@ -1,4 +1,3 @@
|
||||
import React from 'react';
|
||||
import { Navbar, Container } from 'react-bootstrap';
|
||||
|
||||
const Nav = () => {
|
@ -1,2 +0,0 @@
|
||||
|
||||
export {default as Footer} from './Footer';
|
@ -1 +0,0 @@
|
||||
export {default as Nav} from './Nav';
|
@ -1,3 +0,0 @@
|
||||
export {default as PayPal} from './paypal';
|
||||
export {default as Purchase} from './purchase';
|
||||
export {default as ShowCase} from './showCase';
|
@ -1,13 +0,0 @@
|
||||
import React from "react";
|
||||
|
||||
const PayPal = () => {
|
||||
return (
|
||||
<>
|
||||
<div className="container">
|
||||
<button className="bg-primary"> Pay with PayPal</button>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default PayPal;
|
@ -1,18 +0,0 @@
|
||||
import React from "react";
|
||||
|
||||
const Purchase = () => {
|
||||
return (
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-3">
|
||||
<span className="text-danger">
|
||||
30 days Risk free return with 100% refund if not satisfied. Free return shipping
|
||||
included.
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Purchase;
|
@ -1,4 +0,0 @@
|
||||
.photo {
|
||||
height: auto;
|
||||
width: 200px;
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
import React from "react";
|
||||
import "./showCase.css";
|
||||
import { plc, w2c } from "../../assets";
|
||||
|
||||
const ShowCase = () => {
|
||||
return (
|
||||
<div className="container border">
|
||||
<div className="row">
|
||||
<div className="col-2">
|
||||
<figure className="figure border">
|
||||
<img
|
||||
className="photo figure-img img-fluid rounded"
|
||||
src={plc}
|
||||
alt="product plc"
|
||||
/>
|
||||
<figcaption className="figure-caption">
|
||||
B1-14MR2................................
|
||||
</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
<div className="col-2" >
|
||||
<figure className="figure border">
|
||||
<img
|
||||
className="photo figure-img img-fluid rounded"
|
||||
src={w2c}
|
||||
alt="product w2c"
|
||||
/>
|
||||
<figcaption className="figure-caption">
|
||||
W2C ...................
|
||||
</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
export default ShowCase;
|