Skip to content

Commit

Permalink
updates for lighthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
dabit3 committed Jan 7, 2021
1 parent 8cfabb3 commit d40b345
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/heroComponents/Footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Footer = ({ designer }) => {
return (
<div className="flex flex-1 flex-col justify-end pb-10 mt-4">
<p className="font-light text-gray-600 text-xs tracking-tight m-0 leading-tight mb-2">Design by</p>
<p className="font-light text-xs tracking-tight m-0 leading-tight mb-2">Design by</p>
<p className="text-xxs font-semibold tracking-tight m-0 leading-tight">{designer}</p>
</div>
)
Expand Down
1 change: 1 addition & 0 deletions pages/cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const Cart = ({ context }) => {
<div className="flex flex-col items-center pb-10">
<Head>
<title>Jamstack ECommerce - Cart</title>
<meta name="description" content={`Jamstack ECommerce - Shopping cart`} />
<meta property="og:title" content="Jamstack ECommerce - Cart" key="title" />
</Head>
<div className="
Expand Down
1 change: 1 addition & 0 deletions pages/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ function Categories ({ categories = [] }) {
<CartLink />
<Head>
<title>Jamstack ECommerce - All Categories</title>
<meta name="description" content={`Jamstack ECommerce - All categories`} />
<meta property="og:title" content="Jamstack ECommerce - All Categories" key="title" />
</Head>
<div className="
Expand Down
1 change: 1 addition & 0 deletions pages/category/[name].js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const Category = (props) => {
<CartLink />
<Head>
<title>Jamstack ECommerce - {title}</title>
<meta name="description" content={`Jamstack ECommerce - ${title}`} />
<meta property="og:title" content={`Jamstack ECommerce - ${title}`} key="title" />
</Head>
<div className="flex flex-col items-center">
Expand Down
1 change: 1 addition & 0 deletions pages/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ const Checkout = ({ context }) => {
<div className="flex flex-col items-center pb-10">
<Head>
<title>Jamstack ECommerce - Checkout</title>
<meta name="description" content={`Check out`} />
<meta property="og:title" content="Jamstack ECommerce - Checkpit" key="title" />
</Head>
<div
Expand Down
1 change: 1 addition & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const Home = ({ inventoryData = [], categories: categoryData = [] }) => {
<div className="w-full">
<Head>
<title>Jamstack ECommerce</title>
<meta name="description" content="Jamstack ECommerce Next provides a way to quickly get up and running with a fully configurable ECommerce site using Next.js." />
<meta property="og:title" content="Jamstack ECommerce" key="title" />
</Head>
<div className="bg-blue-300
Expand Down
1 change: 1 addition & 0 deletions pages/product/[name].js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const ItemView = (props) => {
<CartLink />
<Head>
<title>Jamstack ECommerce - {name}</title>
<meta name="description" content={description} />
<meta property="og:title" content={`Jamstack ECommerce - ${name}`} key="title" />
</Head>
<div className="
Expand Down

0 comments on commit d40b345

Please sign in to comment.