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", },