Skip to content

Commit

Permalink
Merge pull request #30 from ifspcbt-devspace/develop
Browse files Browse the repository at this point in the history
fix: hero icon
  • Loading branch information
oproprioleonardo authored Oct 17, 2024
2 parents 2c5fb4b + a8fd51c commit a8a395b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
14 changes: 0 additions & 14 deletions public/images/hero.svg

This file was deleted.

7 changes: 4 additions & 3 deletions src/components/home/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import React from "react";
import './hero.css';
import Link from "next/link";
import Image from "next/image";
import {RiShining2Fill} from "react-icons/ri";

const Hero = () => {
return (
<div className="w-full py-20 grid grid-cols-10 light-color-gradient text-black px-4 xl:px-0">
<div className={`col-start-1 col-span-10 xl:col-start-3 xl:col-span-6 grid grid-rows-2 xl:grid-rows-1 gap-4 hero-grid`}>
<div
className={`col-start-1 col-span-10 xl:col-start-3 xl:col-span-6 grid grid-rows-2 xl:grid-rows-1 gap-4 hero-grid`}>
<div className={`col-span-2 row-start-2 xl:row-start-1 xl:row-span-2 xl:col-span-1 xl:max-w-[500px]`}>
<span className={`heading`}>
Divirta-se em nossos eventos
Expand All @@ -20,7 +21,7 @@ const Hero = () => {
</div>

<div className={`col-span-2 row-start-1 xl:row-span-2 xl:col-span-1 flex justify-end`}>
<Image src={`/images/hero.svg`} alt={"hero image"} width={337} height={331}/>
<RiShining2Fill size={330} className={`text-[#000]`}/>
</div>

</div>
Expand Down

0 comments on commit a8a395b

Please sign in to comment.