diff --git a/web/components/hero.tsx b/web/components/hero.tsx index 2fc8646e..1fd20047 100644 --- a/web/components/hero.tsx +++ b/web/components/hero.tsx @@ -11,7 +11,9 @@ const navigation = [ export const Hero = () => { return ( -
+
+ {/*
*/} +
diff --git a/web/public/world-trading-background.jpg b/web/public/world-trading-background.jpg new file mode 100644 index 00000000..747f3a30 Binary files /dev/null and b/web/public/world-trading-background.jpg differ diff --git a/web/tailwind.config.js b/web/tailwind.config.js index 52c7b7c2..679d1979 100644 --- a/web/tailwind.config.js +++ b/web/tailwind.config.js @@ -3,12 +3,16 @@ module.exports = { purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], darkMode: false, // or 'media' or 'class' theme: { - extend: {}, + extend: { + backgroundImage: { + 'world-trading': "url('/world-trading-background.jpg')", + } + }, }, variants: { extend: {}, }, plugins: [ - require('@tailwindcss/forms'), + require('@tailwindcss/forms'), ], }