Skip to content

Commit

Permalink
Part one completed
Browse files Browse the repository at this point in the history
  • Loading branch information
git-sujon committed Jan 12, 2023
1 parent cb87052 commit 2add038
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
14 changes: 11 additions & 3 deletions src/Pages/Home/Counter/Counter.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
import React from 'react';
import { HomeModernIcon, ShieldCheckIcon } from '@heroicons/react/24/solid'

const Counter = () => {
return (
<div>
<div>

<div className='text-white bg-[#072f60] my-32'>
<div className='py-10 px-20'>
{/* part 1 */}
<div className='flex items-center gap-x-5'>
<HomeModernIcon className='w-20'></HomeModernIcon>
<div>
<p className='text-6xl font-bold'>234+</p>
<p className='text-xs'>Homes are sell</p>
</div>
</div>
</div>
</div>
);
};

Expand Down
5 changes: 1 addition & 4 deletions src/Pages/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ const Home = () => {
<div className="container px-5 mx-auto">
{/* <Search></Search> */}
<div
data-aos="fade-up"
data-aos-offset="300"
data-aos-easing="linear"
data-aos-duration="500"

>
<Counter></Counter>
</div>
Expand Down

0 comments on commit 2add038

Please sign in to comment.