diff --git a/src/app/globals.css b/src/app/globals.css index 19cf662..da43199 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3,7 +3,7 @@ @tailwind utilities; :root { - --background: #FBFBFB; + --background: #ffffff; --soft-grey: #DFDFDF; --grey: #445964; --dark-grey: #263138; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 213d4d8..0a6bae0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from 'next'; -import { Roboto } from 'next/font/google'; +import { Urbanist } from 'next/font/google'; import Header from '@/components/Header'; import { CartProvider } from '@/store'; import './globals.css'; -const roboto = Roboto({ +const font = Urbanist({ weight: ['400', '500'], subsets: ['latin'], }); @@ -22,7 +22,7 @@ export default function RootLayout({ }) { return ( - +
{children} diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx index ac58bbc..f05b1f1 100644 --- a/src/components/Button/index.tsx +++ b/src/components/Button/index.tsx @@ -8,7 +8,7 @@ export default function Button({ className, children, ...rest }: Props) { return ( + +
+ + + {count} + + +
+ {/*

Color:

-

Price:

-

- £ - - {product.price.toFixed(2)} - -

@@ -107,7 +153,7 @@ export default function ProductItem({ product, className }: Props) { > Remove all Items -
+
*/} diff --git a/src/components/ProductList/index.tsx b/src/components/ProductList/index.tsx index 82f09a6..2a14fe1 100644 --- a/src/components/ProductList/index.tsx +++ b/src/components/ProductList/index.tsx @@ -4,7 +4,10 @@ type Props = { products: Product[] }; export default function ProductList({ products }: Props) { return ( -
+
{products.map((product) => ( ))} diff --git a/src/components/Products/index.tsx b/src/components/Products/index.tsx index 4033726..410354a 100644 --- a/src/components/Products/index.tsx +++ b/src/components/Products/index.tsx @@ -9,8 +9,8 @@ export default function Products() { const colorOptions = products.map((product) => product.colour); return ( <> -
-

Products

+
+

Products

-
+
-
);