- REACT_APP_AUTH_DOMAIN=
- REACT_APP_CLIENT_ID=
- REACT_APP_STRIPE_PUBLIC_KEY=
- REACT_APP_STRIPE_SECRET_KEY=
-
Fontshare
-
pick the fonts
-
purposely picked funky fonts
-
change title as well
public/index.html
<link
href="https://api.fontshare.com/v2/css?f[]=khand@400&f[]=array@700,400&display=swap"
rel="stylesheet"
/>
<title>Gadget Junkie</title>
index.css
body {
font-family: 'Khand', sans-serif;
background: var(--clr-white);
color: var(--clr-grey-1);
line-height: 1.5;
font-size: 0.875rem;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Array', sans-serif;
letter-spacing: var(--spacing);
text-transform: capitalize;
line-height: 1.25;
margin-bottom: 0.75rem;
}
button {
font-family: inherit;
}
components/Hero.js
<h1>
We enjoy <br />
our gadgets
</h1>
-
get shades from tailwind.css
-
[tailwind color shades] (https://tailwindcss.com/docs/customizing-colors#color-palette-reference)
-
pick grey and primary color
-
OPPOSITE ORDER !!!
:root {
/* INDIGO */
/* dark shades of primary color*/
--clr-primary-1: #312e81;
--clr-primary-2: #3730a3;
--clr-primary-3: #4338ca;
--clr-primary-4: #4f46e5;
/* primary/main color */
--clr-primary-5: #6366f1;
/* lighter shades of primary color */
--clr-primary-6: #818cf8;
--clr-primary-7: #93c5fd;
--clr-primary-8: #bfdbfe;
--clr-primary-9: #dbeafe;
--clr-primary-10: #eff6ff;
/* SLATE */
/* darkest grey - used for headings */
--clr-grey-1: #0f172a;
--clr-grey-2: #1e293b;
--clr-grey-3: #334155;
--clr-grey-4: #475569;
/* grey used for paragraphs */
--clr-grey-5: #64748b;
--clr-grey-6: #94a3b8;
--clr-grey-7: #cbd5e1;
--clr-grey-8: #e2e8f0;
--clr-grey-9: #f1f5f9;
--clr-grey-10: #f8fafc;
}
- Figma
- Code Version
- create Logo.js
components/Logo
import styled from 'styled-components';
const Logo = () => {
return (
<Wrapper>
<span>Gadget</span>Junkie
</Wrapper>
);
};
const Wrapper = styled.h3`
margin-bottom: 0;
color: var(--clr-grey-1);
span {
color: var(--clr-primary-5);
}
`;
export default Logo;
- replace in Navbar and Sidebar
- favicon.io
- I used primary-5 color value
- replace favicon.ico in public
- get images, I usually go with pexels
- pexels
- replace in src/assets
- hero-bcg.jpeg
- hero-bcg-2.jpeg
- undraw
- use primary color
- hero-bcg.svg
components/Hero
<article className='img-container'>
<img src={heroBcg} alt='nice table' className='main-img' />
</article>
gap: 2rem;
- at least 4 product images
- at least 4 secondary images
- setup base and table
- add products
- Navigate to Docs
- Get API_KEY and Base ID and Table Name
- add all to .env
AIRTABLE_API_KEY=
AIRTABLE_BASE=
AIRTABLE_TABLE=
- in functions create
- products.js
- single-product.js
exports.handler = async (event, context, cb) => {
return {
statusCode: 200,
body: 'products route',
};
};
- restart the server "npm run dev"
- visit
- Products
- Single Product
- already installed in main repo
npm i airtable-node
functions/products
const dotenv = require('dotenv');
dotenv.config();
const Airtable = require('airtable-node');
const airtable = new Airtable({ apiKey: process.env.AIRTABLE_API_KEY })
.base(process.env.AIRTABLE_BASE)
.table(process.env.AIRTABLE_TABLE);
exports.handler = async function () {
try {
const response = await airtable.list({ maxRecords: 200 });
console.log('#######');
console.log(response);
console.log('#######');
return {
statusCode: 200,
body: 'products route',
};
} catch (error) {
console.log(error);
return {
statusCode: 500,
body: 'There was an error',
};
}
};
- structure needs to match !!! React Store Products
exports.handler = async function () {
try {
const response = await airtable.list({ maxRecords: 200 });
const products = response.records.map((product) => {
const { id, fields } = product;
const {
name,
featured,
price,
colors,
company,
description,
category,
shipping,
images,
} = fields;
const { url } = images[0];
return {
id,
name,
featured,
price,
colors,
company,
description,
category,
shipping,
image: url,
};
});
return {
statusCode: 200,
body: JSON.stringify(products),
};
} catch (error) {
console.log(error);
return {
statusCode: 500,
body: 'There was an error',
};
}
};
utils/constants.js
export const products_url = '/.netlify/functions/products';
// export const products_url = 'https://course-api.com/react-store-products'
require('dotenv').config();
const Airtable = require('airtable-node');
const airtable = new Airtable({ apiKey: process.env.AIRTABLE_API_KEY })
.base(process.env.AIRTABLE_BASE)
.table(process.env.AIRTABLE_TABLE);
exports.handler = async (event, context, cb) => {
const { id } = event.queryStringParameters;
if (id) {
return {
statusCode: 200,
body: 'product',
};
}
return {
statusCode: 400,
body: 'Please provide product id',
};
};
- structure needs to match !!! Single Product
functions/single-product
require('dotenv').config();
const Airtable = require('airtable-node');
const airtable = new Airtable({ apiKey: process.env.AIRTABLE_API_KEY })
.base(process.env.AIRTABLE_BASE)
.table(process.env.AIRTABLE_TABLE);
exports.handler = async (event, context, cb) => {
const { id } = event.queryStringParameters;
if (id) {
try {
let product = await airtable.retrieve(id);
if (product.error) {
return {
statusCode: 404,
body: `No product with id: ${id}`,
};
}
product = { id: product.id, ...product.fields };
return {
statusCode: 200,
body: JSON.stringify(product),
};
} catch (error) {
return {
statusCode: 500,
body: `Server Error`,
};
}
}
return {
statusCode: 400,
body: 'Please provide product id',
};
};
utils/constants.js
export const single_product_url = `/.netlify/functions/single-product?id=`;
// export const single_product_url = `https://course-api.com/react-store-single-product?id=`;