From a951b9b53f4e9be5bd497cb7ce3b508be43cedcd Mon Sep 17 00:00:00 2001 From: Fernando Videira Date: Sat, 13 Apr 2024 02:37:15 +0100 Subject: [PATCH] Hero: Btn added to hero + Res Mess --- src/Components/Hero/Hero.tsx | 21 ++++++++++++++++----- src/routes/Home.tsx | 4 ++-- tailwind.config.js | 4 +++- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/Components/Hero/Hero.tsx b/src/Components/Hero/Hero.tsx index f80afdc..4886ddd 100644 --- a/src/Components/Hero/Hero.tsx +++ b/src/Components/Hero/Hero.tsx @@ -1,30 +1,41 @@ import React from "react"; import HeroImg from "../../assets/HeroImg.svg"; import Stars from "../../assets/Stars.svg"; +import { FaChevronDown } from "react-icons/fa"; const Hero = () => { return (
-
- hero +
+ hero
-
+
- hero + hero

GROW YOUR

BUSINESS

-

+

We do all the digital footprint for you,

so you can focus on what’s important!

+
+ +
+
+ + + +
); }; diff --git a/src/routes/Home.tsx b/src/routes/Home.tsx index 8be6931..5872be1 100644 --- a/src/routes/Home.tsx +++ b/src/routes/Home.tsx @@ -1,6 +1,6 @@ import React from "react"; -import Navbar from "../Components/Navbar/Navbar"; -import Hero from "../Components/Hero/Hero"; +import Navbar from "../components/Navbar/Navbar"; +import Hero from "../components/Hero/Hero"; const Home = () => { return ( diff --git a/tailwind.config.js b/tailwind.config.js index 90b016d..ceb1627 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,12 +7,14 @@ export default { "custom-bglight": "#1C1C1F", "custom-bgdark": "#06060B", "text-gold": "#FACC97", + "gold-light": "#FACC97", + "gold-dark": "#54330F", }, fontFamily: { baijam: ['"Bai Jamjuree"', "sans-serif"], }, spacing: { - 95: "8rem", + 8: "8rem", 20: "12rem", 22: "22rem", },